@axerunners/axecore-lib
Version:
A pure and powerful JavaScript Axe library.
22 lines (17 loc) • 763 B
JavaScript
/* eslint-disable */
// TODO: Remove previous line and work through linting issues at next edit
;
var should = require('chai').should();
var sinon = require('sinon');
var bitcore = require('../');
describe('#versionGuard', function() {
it('global._axecore should be defined', function() {
should.equal(global._axecore, bitcore.version);
});
it('throw a warning if version is already defined', function() {
sinon.stub(console, 'warn');
bitcore.versionGuard('version');
should.equal(console.warn.calledOnce,true);
should.equal(console.warn.calledWith('More than one instance of axecore-lib found. Please make sure that you are not mixing instances of classes of the different versions of axecore.'),true)
});
});