Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
osazos committed May 15, 2024
1 parent 7aa0d22 commit 4e7fa0f
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions test/spec/utils_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,16 @@ describe('Utils', function () {
type_array = 'Array',
type_function = 'Function';

let sandbox;

beforeEach(function () {
sandbox = sinon.sandbox.create();
});
describe('canAccessWindowTop', function () {
let sandbox;

afterEach(function () {
sandbox.restore();
});
beforeEach(function () {
sandbox = sinon.sandbox.create();
});

describe('canAccessWindowTop', function () {
afterEach(function () {
sandbox.restore();
});
it('should return true if window.top is accessible', function () {
assert.equal(utils.canAccessWindowTop(), true);
});
Expand Down

0 comments on commit 4e7fa0f

Please sign in to comment.