chore: fix lint

This commit is contained in:
Samuel Attard
2023-08-29 12:08:22 -07:00
parent 6a29c3dfae
commit b8601c8e87

View File

@@ -1,10 +1,10 @@
import { expect } from 'chai';
import * as cp from 'child_process';
import * as cp from 'node:child_process';
import { BrowserWindow } from 'electron';
import * as fs from 'fs-extra';
import * as os from 'os';
import * as path from 'path';
import { pathToFileURL } from 'url';
import * as os from 'node:os';
import * as path from 'node:path';
import { pathToFileURL } from 'node:url';
const runFixture = async (appPath: string, args: string[] = []) => {
const result = cp.spawn(process.execPath, [appPath, ...args], {