chore: run eslint on tools/run-id-tests

This commit is contained in:
CosminPerRam 2024-01-20 18:02:17 +02:00
parent 68a3ad40d1
commit c502790295
1 changed files with 9 additions and 9 deletions

View File

@ -1,18 +1,18 @@
import { spawnSync } from 'node:child_process';
import process from 'node:process';
import { spawnSync } from 'node:child_process'
import process from 'node:process'
// Import directly from file so that this script works without dependencies installed.
import { games } from './../lib/games.js';
import { games } from './../lib/games.js'
const ID_TEST_BIN = process.env["GAMEDIG_ID_TESTER"] || "gamedig-id-tests";
const ID_TEST_BIN = process.env.GAMEDIG_ID_TESTER || 'gamedig-id-tests'
const result = spawnSync(ID_TEST_BIN, {
input: JSON.stringify(games),
stdio: ['pipe', 'inherit', 'inherit'],
});
input: JSON.stringify(games),
stdio: ['pipe', 'inherit', 'inherit']
})
if (result.error) {
throw result.error;
throw result.error
}
process.exit(result.status);
process.exit(result.status)