You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/protocol-ava-3.js
+8-7
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ test('main() config validation: throw when config is not a plain object', withPr
17
17
validateConfig(t,provider,[]);
18
18
});
19
19
20
-
test('main() config validation: throw when config contains keys other than \'extensions\'or \'rewritePaths\'',withProvider,(t,provider)=>{
20
+
test('main() config validation: throw when config contains keys other than \'extensions\', \'rewritePaths\' or \'compile\'',withProvider,(t,provider)=>{
21
21
validateConfig(t,provider,{foo: 1});
22
22
});
23
23
@@ -37,25 +37,26 @@ test('main() config validation: config may not be an empty object', withProvider
37
37
validateConfig(t,provider,{});
38
38
});
39
39
40
-
test('main() config validation: throw when config.compile is not a boolean nor undefined',withProvider,(t,provider)=>{
40
+
test('main() config validation: throw when config.compile is not a boolean',withProvider,(t,provider)=>{
0 commit comments