source: frontend/node_modules/@sinonjs/commons/lib/global.test.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 355 bytes
Line 
1"use strict";
2
3var assert = require("@sinonjs/referee-sinon").assert;
4var globalObject = require("./global");
5
6describe("global", function () {
7 before(function () {
8 if (typeof global === "undefined") {
9 this.skip();
10 }
11 });
12
13 it("is same as global", function () {
14 assert.same(globalObject, global);
15 });
16});
Note: See TracBrowser for help on using the repository browser.