- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
"use strict";
|
|
|
|
var assert = require("@sinonjs/referee-sinon").assert;
|
|
var globalObject = require("./global");
|
|
|
|
describe("global", function () {
|
|
before(function () {
|
|
if (typeof global === "undefined") {
|
|
this.skip();
|
|
}
|
|
});
|
|
|
|
it("is same as global", function () {
|
|
assert.same(globalObject, global);
|
|
});
|
|
});
|