Skip to content

Commit 13c9081

Browse files
committed
Remove specialized MU build tests
1 parent c439b06 commit 13c9081

File tree

7 files changed

+1
-44
lines changed

7 files changed

+1
-44
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@
9393
"esprima": "^4.0.0",
9494
"in-repo-a": "link:tests/dummy/lib/in-repo-a",
9595
"in-repo-b": "link:tests/dummy/lib/in-repo-b",
96-
"in-repo-c": "link:tests/dummy/lib/in-repo-c",
9796
"loader.js": "^4.7.0",
9897
"mktemp": "^0.4.0",
9998
"mocha": "^5.0.0",

tests/dummy/lib/in-repo-c/index.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

tests/dummy/lib/in-repo-c/package.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

tests/dummy/lib/in-repo-c/src/test-file.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

tests/dummy/src/test-file.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

tests/dummy/src/ui/styles/.gitkeep

Whitespace-only changes.

tests/unit/build-test.ts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ import { module, test } from 'qunit';
22

33
import addonFileA from 'in-repo-a/test-file';
44
import addonFileB from 'in-repo-b/test-file';
5-
import addonFileC from 'in-repo-c/src/test-file';
65
import fileA from 'dummy/a';
76
import fileB from 'dummy/b';
8-
import muFile from 'dummy/src/test-file';
97
import shadowedFile from 'dummy/shadowed-file';
108
import { description as fromAts } from 'in-repo-a/test-support/from-ats';
119
import { description as fromTs } from 'dummy/tests/from-ts';
@@ -25,18 +23,11 @@ module('Unit | Build', function() {
2523
assert.equal(shadowedFile, 'dummy/shadowed-file');
2624
});
2725

28-
test('MU app files wind up in the right place', function(assert) {
29-
assert.equal(muFile, 'dummy/src/test-file');
30-
});
31-
32-
test('MU addon files wind up in the right place', function(assert) {
33-
assert.equal(addonFileC, 'in-repo-c/src/test-file');
34-
});
35-
3626
test('addon\'s addon-test-support files end up in <addon-name>/test-support/*', function (assert) {
3727
assert.ok(fromAts);
3828
assert.equal(fromAts, 'From addon-test-support');
3929
});
30+
4031
test('addon\'s test-support files end up in dummy/tests/*', function (assert) {
4132
assert.ok(fromTs);
4233
assert.equal(fromTs, 'From test-support');

0 commit comments

Comments
 (0)