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 04012b1 commit 9131016Copy full SHA for 9131016
tests/unit/main.ts
@@ -133,7 +133,7 @@ describe('command', () => {
133
const main = mockModule.getModuleUnderTest().default;
134
main.run(getMockHelper(), { mode: 'dev' }).then(() => {
135
assert.isTrue(mockDevConfig.called);
136
- assert.isTrue(mockLogger.calledWith('stats', ['dev config']));
+ assert.isTrue(mockLogger.calledWith(stats, ['dev config']));
137
});
138
139
@@ -284,7 +284,7 @@ describe('command', () => {
284
);
285
setTimeout(
286
dfd.callback(() => {
287
- assert.isTrue(mockLogger.calledWith('stats', ['dist config'], 'watching...'));
+ assert.isTrue(mockLogger.calledWith(stats, ['dist config'], 'watching...'));
288
}),
289
1000
290
0 commit comments