We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a5976d commit 6436b17Copy full SHA for 6436b17
1 file changed
test/unit/apps/item/index-test.js
@@ -51,10 +51,6 @@ describe('item app', () => {
51
http: {
52
createServer: stub().returns({})
53
},
54
- path: {
55
- resolve: stub().returnsArg(0),
56
- join: stub().returnsArg(0)
57
- },
58
'fs-extra': {
59
readFileSync: stub().returns(''),
60
readJsonSync: stub().returns({
@@ -144,7 +140,7 @@ describe('item app', () => {
144
140
it('calls webpackConfig', () => {
145
141
assert.calledWith(
146
142
deps['../common'].webpackConfig,
147
- [dirs.root, dirs.controllers].map(mod.modules),
143
+ [dirs.root, dirs.controllers],
148
dirs.root,
149
match.object,
150
'item.entry.js',
0 commit comments