electron/spec/static/index.html

121 lines
3.2 KiB
HTML
Raw Normal View History

2013-07-17 08:28:14 +00:00
<html>
<head>
<meta name="referrer" content="always">
<link href="../node_modules/mocha/mocha.css" rel="stylesheet">
<script src="jquery-2.0.3.min.js"></script>
2013-07-17 08:28:14 +00:00
</head>
<body>
<div id="mocha"></div>
<script type="text/javascript" charset="utf-8">
(function() {
// Deprecated APIs are still supported and should be tested.
process.throwDeprecation = false
const path = require('path')
const electron = require('electron')
const { remote, ipcRenderer } = electron
2019-03-12 00:07:11 +00:00
// Set up chai-as-promised here first to avoid conflicts
// It must be loaded first or really strange things happen inside
// chai that cause test failures
// DO NOT MOVE, REMOVE OR EDIT THIS LINE
require('chai').use(require('chai-as-promised'))
// Check if we are running in CI.
const isCi = remote.getGlobal('isCi')
2013-08-21 03:35:39 +00:00
if (!isCi) {
const win = remote.getCurrentWindow()
win.show()
win.focus()
2013-08-21 03:35:39 +00:00
}
// Show DevTools.
document.oncontextmenu = (e) => {
remote.getCurrentWindow().inspectElement(e.clientX, e.clientY)
}
// Rediret all output to browser.
if (isCi) {
global.__defineGetter__('console', function () {
return {
log: (...args) => ipcRenderer.send('console.log', args),
error: (...args) => ipcRenderer.send('console.error', args)
}
})
}
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)
2013-07-17 08:28:14 +00:00
if (!process.env.MOCHA_REPORTER) {
mocha.ui('bdd').reporter(isCi ? 'tap' : 'html')
}
mocha.timeout(isCi ? 30000 : 10000)
2013-07-17 08:28:14 +00:00
const query = Mocha.utils.parseQuery(window.location.search || '')
if (query.grep) mocha.grep(query.grep)
if (query.invert) mocha.invert()
2013-07-17 08:28:14 +00:00
// Read all test files.
const walker = require('walkdir').walk(path.dirname(__dirname), {
no_recurse: true
})
const crashSpec = 'api-crash-reporter-spec.js'
// 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')
2018-01-01 06:46:39 +00:00
: null
2013-07-17 08:28:14 +00:00
walker.on('file', (file) => {
2018-01-01 06:46:39 +00:00
if (/-spec\.js$/.test(file) && !file.includes(crashSpec) &&
(!moduleMatch || moduleMatch.test(file))) {
mocha.addFile(file)
}
})
2013-07-17 08:28:14 +00:00
walker.on('end', () => {
if (!process.env.npm_config_match || new RegExp(process.env.npm_config_match, 'g').test(crashSpec)) {
mocha.addFile(path.resolve(__dirname, '..', crashSpec))
}
const runner = mocha.run(() => {
// Ensure the callback is called after runner is defined
setTimeout(() => {
if (isCi && runner.hasOnly) {
try {
throw new Error('A spec contains a call to it.only or describe.only and should be reverted.')
} catch (error) {
console.error(error.stack || error)
}
ipcRenderer.send('process.exit', 1)
return
}
Mocha.utils.highlightTags('code')
if (isCi) {
ipcRenderer.send('process.exit', runner.failures)
}
}, 0)
})
})
})()
2013-07-17 08:28:14 +00:00
</script>
</body>
</html>