We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c380a8e commit 1076312Copy full SHA for 1076312
tests/unit/main.ts
@@ -129,7 +129,7 @@ describe('command', () => {
129
const main = mockModule.getModuleUnderTest().default;
130
main.run(getMockHelper(), { mode: 'dev' }).then(() => {
131
assert.isTrue(mockDevConfig.called);
132
- assert.isTrue(mockLogger.calledWith('stats', 'dev config'));
+ assert.isTrue(mockLogger.calledWith(stats, 'dev config'));
133
});
134
135
@@ -271,7 +271,7 @@ describe('command', () => {
271
);
272
setTimeout(
273
dfd.callback(() => {
274
- assert.isTrue(mockLogger.calledWith('stats', 'dist config', 'watching...'));
+ assert.isTrue(mockLogger.calledWith(stats, 'dist config', 'watching...'));
275
}),
276
1000
277
0 commit comments