chore: enable native unittesting (#20293)
This commit is contained in:
parent
f054d5862c
commit
80af35e0cd
10 changed files with 199 additions and 17 deletions
|
@ -27,7 +27,7 @@ function getOutDir (shouldLog) {
|
|||
if (process.env.ELECTRON_OUT_DIR) {
|
||||
return process.env.ELECTRON_OUT_DIR
|
||||
} else {
|
||||
for (const buildType of ['Debug', 'Testing', 'Release']) {
|
||||
for (const buildType of ['Debug', 'Testing', 'Release', 'Default']) {
|
||||
const outPath = path.resolve(SRC_DIR, 'out', buildType)
|
||||
if (fs.existsSync(outPath)) {
|
||||
if (shouldLog) console.log(`OUT_DIR is: ${buildType}`)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue