@@ -6,7 +6,7 @@ var assert = require('node:assert');
66describe ( '.only()' , function ( ) {
77 describe ( 'bdd' , function ( ) {
88 it ( 'should run only tests that marked as `only`' , function ( done ) {
9- run ( 'options/only/bdd.fixture.js' , [ '--ui' , 'bdd' ] , function ( err , res ) {
9+ run ( 'options/only/bdd.fixture.js' , [ '--ui' , 'bdd' , '--no-forbid-only' ] , function ( err , res ) {
1010 if ( err ) {
1111 done ( err ) ;
1212 return ;
@@ -22,7 +22,7 @@ describe('.only()', function () {
2222
2323 describe ( 'tdd' , function ( ) {
2424 it ( 'should run only tests that marked as `only`' , function ( done ) {
25- run ( 'options/only/tdd.fixture.js' , [ '--ui' , 'tdd' ] , function ( err , res ) {
25+ run ( 'options/only/tdd.fixture.js' , [ '--ui' , 'tdd' , '--no-forbid-only' ] , function ( err , res ) {
2626 if ( err ) {
2727 done ( err ) ;
2828 return ;
@@ -40,7 +40,7 @@ describe('.only()', function () {
4040 it ( 'should run only tests that marked as `only`' , function ( done ) {
4141 run (
4242 'options/only/qunit.fixture.js' ,
43- [ '--ui' , 'qunit' ] ,
43+ [ '--ui' , 'qunit' , '--no-forbid-only' ] ,
4444 function ( err , res ) {
4545 if ( err ) {
4646 done ( err ) ;
0 commit comments