mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
build: accidentally inverted a bool (#20029)
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user