123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- const Module = require('module')
- const path = require('path')
- const v8 = require('v8')
- Module.globalPaths.push(path.resolve(__dirname, '../spec/node_modules'))
- // We want to terminate on errors, not throw up a dialog
- process.on('uncaughtException', (err) => {
- console.error('Unhandled exception in main spec runner:', err)
- process.exit(1)
- })
- // Tell ts-node which tsconfig to use
- process.env.TS_NODE_PROJECT = path.resolve(__dirname, '../tsconfig.spec.json')
- process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = 'true'
- const { app, protocol } = require('electron')
- v8.setFlagsFromString('--expose_gc')
- app.commandLine.appendSwitch('js-flags', '--expose_gc')
- // Prevent the spec runner quiting when the first window closes
- app.on('window-all-closed', () => null)
- // Use fake device for Media Stream to replace actual camera and microphone.
- app.commandLine.appendSwitch('use-fake-device-for-media-stream')
- global.standardScheme = 'app'
- global.zoomScheme = 'zoom'
- protocol.registerSchemesAsPrivileged([
- { scheme: global.standardScheme, privileges: { standard: true, secure: true } },
- { scheme: global.zoomScheme, privileges: { standard: true, secure: true } },
- { scheme: 'cors-blob', privileges: { corsEnabled: true, supportFetchAPI: true } },
- { scheme: 'cors', privileges: { corsEnabled: true, supportFetchAPI: true } },
- { scheme: 'no-cors', privileges: { supportFetchAPI: true } },
- { scheme: 'no-fetch', privileges: { corsEnabled: true } }
- ])
- app.whenReady().then(async () => {
- require('ts-node/register')
- const argv = require('yargs')
- .boolean('ci')
- .string('g').alias('g', 'grep')
- .boolean('i').alias('i', 'invert')
- .argv
- const isCi = !!argv.ci
- global.isCI = isCi
- const Mocha = require('mocha')
- const mochaOptions = {}
- if (process.env.MOCHA_REPORTER) {
- mochaOptions.reporter = process.env.MOCHA_REPORTER
- }
- if (process.env.MOCHA_MULTI_REPORTERS) {
- mochaOptions.reporterOptions = {
- reporterEnabled: process.env.MOCHA_MULTI_REPORTERS
- }
- }
- const mocha = new Mocha(mochaOptions)
- if (!process.env.MOCHA_REPORTER) {
- mocha.ui('bdd').reporter('tap')
- }
- mocha.timeout(isCi ? 30000 : 10000)
- if (argv.grep) mocha.grep(argv.grep)
- if (argv.invert) mocha.invert()
- const filter = (file) => {
- if (!/-spec\.[tj]s$/.test(file)) {
- return false
- }
- // This allows you to run specific modules only:
- // npm run test -match=menu
- const moduleMatch = process.env.npm_config_match
- ? new RegExp(process.env.npm_config_match, 'g')
- : null
- if (moduleMatch && !moduleMatch.test(file)) {
- return false
- }
- return true
- }
- const getFiles = require('../spec/static/get-files')
- const testFiles = await getFiles(__dirname, { filter })
- testFiles.sort()
- sortToEnd(testFiles, f => f.includes('crash-reporter')).forEach((file) => mocha.addFile(file))
- const cb = () => {
- // Ensure the callback is called after runner is defined
- process.nextTick(() => {
- process.exit(runner.failures)
- })
- }
- const runner = mocha.run(cb)
- })
- function partition (xs, f) {
- const trues = []
- const falses = []
- xs.forEach(x => (f(x) ? trues : falses).push(x))
- return [trues, falses]
- }
- function sortToEnd (xs, f) {
- const [end, beginning] = partition(xs, f)
- return beginning.concat(end)
- }
|