build: accidentally inverted a bool (#20029)
This commit is contained in:
parent
609403fba6
commit
a9e3dabc8a
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ async function runElectronTests () {
|
|||
|
||||
const testResultsDir = process.env.ELECTRON_TEST_RESULTS_DIR
|
||||
for (const [runnerId, { description, run }] of runners) {
|
||||
if (runnersToRun && runnersToRun.includes(runnerId)) {
|
||||
if (runnersToRun && !runnersToRun.includes(runnerId)) {
|
||||
console.info('\nSkipping:', description)
|
||||
continue
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue