test: get native unit tests running (#21914)
This commit is contained in:
parent
83124889e5
commit
f1f185ee93
1 changed files with 2 additions and 3 deletions
|
@ -35,9 +35,8 @@ const NPX_CMD = process.platform === 'win32' ? 'npx.cmd' : 'npx'
|
||||||
|
|
||||||
const runners = new Map([
|
const runners = new Map([
|
||||||
['main', { description: 'Main process specs', run: runMainProcessElectronTests }],
|
['main', { description: 'Main process specs', run: runMainProcessElectronTests }],
|
||||||
['remote', { description: 'Remote based specs', run: runRemoteBasedElectronTests }]
|
['remote', { description: 'Remote based specs', run: runRemoteBasedElectronTests }],
|
||||||
// TODO(codebytere): refactor native tests to only depend on what we need
|
['native', { description: 'Native specs', run: runNativeElectronTests }]
|
||||||
/* ['native', { description: 'Native specs', run: runNativeElectronTests }] */
|
|
||||||
])
|
])
|
||||||
|
|
||||||
const specHashPath = path.resolve(__dirname, '../spec/.hash')
|
const specHashPath = path.resolve(__dirname, '../spec/.hash')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue