1
0
mirror of https://github.com/lrsjng/pagemap.git synced 2025-08-07 21:56:26 +02:00
This commit is contained in:
Lars Jung
2019-04-27 21:20:11 +02:00
parent cfd5be77a9
commit a05a11d795
14 changed files with 1198 additions and 472 deletions

12
test/index.js Normal file
View File

@@ -0,0 +1,12 @@
if (!global.window) {
global.window = new (require('jsdom')).JSDOM().window;
}
const {test, assert} = require('scar');
const pagemap = require('../src/pagemap');
test('access', () => {
assert.equal(typeof pagemap, 'function');
});
test.cli();