File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
test/tools/unified-spec-runner Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -256,11 +256,15 @@ export function specialCheck(
256256 const actualExists = actual !== undefined && actual !== null ;
257257
258258 if ( expected . $$exists ) {
259- expect ( actualExists , ejson `expected value at path ${ path . join } to exist, but received ${ actual } ` )
260- . to . be . true ;
259+ expect (
260+ actualExists ,
261+ ejson `expected value at path ${ path . join } to exist, but received ${ actual } `
262+ ) . to . be . true ;
261263 } else {
262- expect ( actualExists , ejson `expected value at path ${ path . join } NOT to exist, but received ${ actual } ` )
263- . to . be . false ;
264+ expect (
265+ actualExists ,
266+ ejson `expected value at path ${ path . join } NOT to exist, but received ${ actual } `
267+ ) . to . be . false ;
264268 }
265269 } else {
266270 expect . fail ( `Unknown special operator: ${ JSON . stringify ( expected ) } ` ) ;
You can’t perform that action at this time.
0 commit comments