forked from parcel-bundler/parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglob.js
58 lines (48 loc) · 1.63 KB
/
glob.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const assert = require('assert');
const fs = require('fs');
const {bundle, run, assertBundleTree} = require('./utils');
describe('glob', function() {
it('should require a glob of files', async function() {
let b = await bundle(__dirname + '/integration/glob/index.js');
assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', '*.js', 'a.js', 'b.js'],
childBundles: []
});
let output = run(b);
assert.equal(typeof output, 'function');
assert.equal(await output(), 3);
});
it('should require nested directories with a glob', async function() {
let b = await bundle(__dirname + '/integration/glob-deep/index.js');
assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', '*.js', 'a.js', 'b.js', 'c.js', 'z.js'],
childBundles: []
});
let output = run(b);
assert.equal(typeof output, 'function');
assert.equal(await output(), 13);
});
it('should support importing a glob of CSS files', async function() {
let b = await bundle(__dirname + '/integration/glob-css/index.js');
assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', 'index.css', '*.css', 'other.css', 'local.css'],
childBundles: [
{
name: 'index.css',
assets: ['index.css', 'other.css', 'local.css'],
childBundles: []
}
]
});
let output = run(b);
assert.equal(typeof output, 'function');
assert.equal(output(), 2);
let css = fs.readFileSync(__dirname + '/dist/index.css', 'utf8');
assert(css.includes('.local'));
assert(css.includes('.other'));
assert(css.includes('.index'));
});
});