mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-24 03:57:08 -04:00
6 lines
170 B
JavaScript
6 lines
170 B
JavaScript
const {test, assert} = require('scar');
|
|
|
|
test('window is global object', () => {
|
|
assert.ok(global.window);
|
|
assert.equal(global.window, global.window.window);
|
|
});
|