File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export class TestRunner {
107
107
}
108
108
109
109
if ( this . #options. retries !== undefined ) {
110
- args . push ( '--timeout ' )
110
+ args . push ( '--retries ' )
111
111
args . push ( String ( this . #options. retries ) )
112
112
}
113
113
@@ -143,13 +143,8 @@ export class TestRunner {
143
143
args . push ( filters . tags . join ( ',' ) )
144
144
}
145
145
146
- if ( filters . ignoreTags ) {
147
- args . push ( '--ignore-tags' )
148
- args . push ( filters . ignoreTags . join ( ',' ) )
149
- }
150
-
151
146
if ( filters . tests ) {
152
- args . push ( '--ignore- tests' )
147
+ args . push ( '--tests' )
153
148
args . push ( filters . tests . join ( ',' ) )
154
149
}
155
150
Original file line number Diff line number Diff line change @@ -84,7 +84,6 @@ export type TestRunnerOptions = {
84
84
groups : string [ ]
85
85
files : string [ ]
86
86
tags : string [ ]
87
- ignoreTags : string [ ]
88
87
} >
89
88
90
89
reporters ?: string [ ]
You can’t perform that action at this time.
0 commit comments