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);
|
|
});
|
|
});
|