forked from mainmatter/qunit-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
65 lines (55 loc) · 2 KB
/
index.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
59
60
61
62
63
64
65
/* eslint-env node */
'use strict';
const Funnel = require('broccoli-funnel');
const MergeTrees = require('broccoli-merge-trees');
module.exports = {
name: 'qunit-dom',
init() {
this._super.init.apply(this, arguments);
const VersionChecker = require('ember-cli-version-checker');
const checker = new VersionChecker(this.project);
this._supportOlderEmberQUnit = !checker.for('ember-qunit').gte('5.0.0-alpha.1');
},
included() {
this._super.included.apply(this, arguments);
if (this._supportOlderEmberQUnit) {
this.import('vendor/qunit-dom.js', { type: 'test' });
this.import('vendor/overwrite-qunit-dom-root-element.js', { type: 'test' });
}
},
treeForVendor(vendorTree) {
if (this._supportOlderEmberQUnit) {
let qunitPluginTree = new Funnel(`${__dirname}/dist`, {
files: ['qunit-dom.js', 'qunit-dom.js.map'],
});
return new MergeTrees([vendorTree, qunitPluginTree]);
}
},
treeForAddonTestSupport() {
if (this._supportOlderEmberQUnit) {
return new Funnel(`${__dirname}/vendor`, {
files: ['dummy-module.js'],
getDestinationPath() {
return 'qunit-dom/index.js';
},
});
} else {
// this differs from ember-cli's default treeForAddonTestSupport in that it
// makes our test support modules available at `qunit-dom` **not**
// `qunit-dom/test-suppprt`
let scopedInputTree = new Funnel(`${__dirname}/dist/addon-test-support`, {
destDir: 'qunit-dom',
});
// in order to take advantage of ember-auto-import, we **must** use
// `preprocessJs` (because it instruments JS files looking for imports
// via the preprocessor registry)
//
// this also properly transpiles our files based on the consuming applications
// targets (through ember-cli-babel)
return this.preprocessJs(scopedInputTree, '/', this.name, {
annotation: `qunit-dom - treeForAddonTestSupport`,
registry: this.registry,
});
}
},
};