-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
31 lines (27 loc) · 1.05 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
'use strict';
require('mocha');
require('should');
var fs = require('fs');
var path = require('path');
var assert = require('assert');
var unlazy = require('..');
function fixture(fp) {
return fs.readFileSync(path.join('test/fixtures', fp), 'utf8');
}
function actual(fp) {
return fs.readFileSync(path.join('test/actual', fp), 'utf8');
}
describe('unlazy', function() {
it('should unlazy a lazy require', function() {
assert.equal(unlazy(fixture('ansi-colors.js')), actual('ansi-colors.js'));
assert.equal(unlazy(fixture('bottom.js')), actual('bottom.js'));
assert.equal(unlazy(fixture('many.js')), actual('many.js'));
assert.equal(unlazy(fixture('markdown-toc.js')), actual('markdown-toc.js'));
assert.equal(unlazy(fixture('non-lazy.js')), actual('non-lazy.js'));
assert.equal(unlazy(fixture('separate.js')), actual('separate.js'));
assert.equal(unlazy(fixture('top.js')), actual('top.js'));
});
it('should not unlazy a normal file require', function() {
assert.equal(unlazy(fixture('normal.js')), actual('normal.js'));
});
});