forked from xolvio/rtd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtd.conf.js
33 lines (32 loc) · 1.06 KB
/
rtd.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// *********************************************************************************************************************
// IF YOU WANT TO CUSTOMIZE ANYTHING HERE, COPY THIS FILE TO YOUR /test DIRECTORY AND RTD WILL USE THAT FILE INSTEAD
// *********************************************************************************************************************
module.exports = {
DEBUG: false,
startupTasks: [
'bgShell:killAll',
'downloadAndOrStartSelenium',
'bgShell:synchronizeMirrorApp',
'bgShell:instrumentCode',
'bgShell:startMirrorApp',
'bgShell:startKarma',
'bgShell:startApp',
'outputPorts',
'watch'
],
watchTasks: [
'bgShell:karmaRun',
'bgShell:synchronizeMirrorApp',
'bgShell:instrumentCode',
'bgShell:runTests',
'postLatestUnitCoverage',
'bgShell:killReports',
'bgShell:runCoverageCheck'
],
coverageThresholds: {
'statements': 100,
'branches': 100,
'functions': 100,
'lines': 100
}
};