mirror of
https://github.com/atom/atom.git
synced 2026-01-14 17:38:03 -05:00
Fix running tests on macOS
This commit is contained in:
@@ -10,8 +10,9 @@ const path = require('path')
|
||||
|
||||
const CONFIG = require('./config')
|
||||
|
||||
const packagedAppPath = path.resolve(__dirname, '..', 'out', 'Atom-darwin-x64')
|
||||
const executablePath = path.join(packagedAppPath, 'Atom.app', 'Contents', 'MacOS', 'Atom')
|
||||
const appName = CONFIG.channel === 'beta' ? 'Atom Beta' : 'Atom'
|
||||
const packagedAppPath = path.resolve(__dirname, '..', 'out', `${appName}.app`)
|
||||
const executablePath = path.join(packagedAppPath, 'Contents', 'MacOS', appName)
|
||||
const resourcePath = CONFIG.repositoryRootPath
|
||||
|
||||
function runCoreMainProcessTests (callback) {
|
||||
|
||||
Reference in New Issue
Block a user