@@ -9,7 +9,7 @@ test('replace: one npm run ', async (t) => {
99
1010 t . equal ( result , 'one' , 'should get script name' ) ;
1111 t . end ( ) ;
12- } ) ;
12+ } , { checkAssertionsCount : false } ) ;
1313
1414test ( 'replace: npm tst' , async ( t ) => {
1515 const result = await replace ( 'npm tst' , ( type , str ) => {
@@ -19,7 +19,7 @@ test('replace: npm tst', async (t) => {
1919
2020 t . equal ( result , 'test' , 'should determine reserved: tst' ) ;
2121 t . end ( ) ;
22- } ) ;
22+ } , { checkAssertionsCount : false } ) ;
2323
2424test ( 'replace: npm t' , async ( t ) => {
2525 const result = await replace ( 'npm t' , ( type , str ) => {
@@ -29,7 +29,7 @@ test('replace: npm t', async (t) => {
2929
3030 t . equal ( result , 'test' , 'should determine reserved: t' ) ;
3131 t . end ( ) ;
32- } ) ;
32+ } , { checkAssertionsCount : false } ) ;
3333
3434test ( 'replace: npm version' , async ( t ) => {
3535 const result = await replace ( 'npm version' , ( type , str ) => {
@@ -59,4 +59,4 @@ test('replace: a few npm runs', async (t) => {
5959
6060 t . equal ( cmd , 'one && two' , 'should cut npm run from all expressions' ) ;
6161 t . end ( ) ;
62- } ) ;
62+ } , { checkAssertionsCount : false } ) ;
0 commit comments