24939e8fa4
* build: let circleci divide our test suites in two * well our tests rely on side affects, thats cool I guess
104 lines
2.8 KiB
HTML
104 lines
2.8 KiB
HTML
<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>
|
|
</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 { ipcRenderer } = electron
|
|
|
|
// 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'))
|
|
|
|
// Rediret all output to browser.
|
|
const fakeConsole = {}
|
|
for (const k in console) {
|
|
if (console.hasOwnProperty(k) && k !== 'assert') {
|
|
fakeConsole[k] = (...args) => ipcRenderer.send('console-call', k, args)
|
|
}
|
|
}
|
|
global.__defineGetter__('console', function () {
|
|
return fakeConsole
|
|
})
|
|
|
|
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(30000)
|
|
|
|
const query = Mocha.utils.parseQuery(window.location.search || '')
|
|
if (query.grep) mocha.grep(query.grep)
|
|
if (query.invert) mocha.invert()
|
|
|
|
const files = query.files ? query.files.split(',') : undefined
|
|
|
|
// Read all test files.
|
|
const walker = require('walkdir').walk(path.dirname(__dirname), {
|
|
no_recurse: true
|
|
})
|
|
|
|
// 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
|
|
|
|
const testFiles = []
|
|
walker.on('file', (file) => {
|
|
if (/-spec\.js$/.test(file) && (!moduleMatch || moduleMatch.test(file))) {
|
|
testFiles.push(file)
|
|
}
|
|
})
|
|
|
|
const baseElectronDir = path.resolve(__dirname, '..', '..')
|
|
|
|
walker.on('end', () => {
|
|
testFiles.sort()
|
|
testFiles.forEach((file) => {
|
|
if (!files || files.includes(path.relative(baseElectronDir, file))) {
|
|
mocha.addFile(file)
|
|
}
|
|
})
|
|
|
|
// Set up chai in the correct order
|
|
const chai = require('chai')
|
|
chai.use(require('chai-as-promised'))
|
|
chai.use(require('dirty-chai'))
|
|
|
|
const runner = mocha.run(() => {
|
|
// Ensure the callback is called after runner is defined
|
|
setTimeout(() => {
|
|
Mocha.utils.highlightTags('code')
|
|
ipcRenderer.send('process.exit', runner.failures)
|
|
}, 0)
|
|
})
|
|
})
|
|
})()
|
|
</script>
|
|
</body>
|
|
</html>
|