Skip to content

Commit 3d6eea4

Browse files
committed
Remove console message check from Executor test
This message was removed in the previous commit
1 parent 227ba17 commit 3d6eea4

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/unit/lib/executors/Executor.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -218,15 +218,6 @@ registerSuite('lib/executors/Executor', function() {
218218
'unknown property'() {
219219
executor.configure(<any>{ foo: 'bar' });
220220
assert.propertyVal(executor.config, 'foo', 'bar');
221-
assert.equal(
222-
mockConsole.warn.callCount,
223-
1,
224-
'a warning should have been emitted'
225-
);
226-
assert.match(
227-
mockConsole.warn.getCall(0).args[0],
228-
/has unknown option "foo"/
229-
);
230221
},
231222

232223
'environment config mixin'() {

0 commit comments

Comments
 (0)