forked from SaxoBank/openapi-clientlib-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjasmine-conf.js
69 lines (62 loc) · 2.06 KB
/
jasmine-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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
* The jasmine task generates the test spec files
* and it can also run them in node.js through phantomjs
*/
var sharedConfig = require("./_shared-config");
var globalOptions = {
keepRunner: true, // doesn't delete the spec html files after completing
host: 'http://localhost:8081/', // website hosted by the connect task
display: 'none',
summary: true,
vendor: [
"libs/fetch.js",
"libs/es6-promise.js",
"libs/jquery-2.1.4.js",
"libs/jquery.signalR-2.0.3.js"]
};
// coverage task - runs jasmine with istanbul in order to get code coverage
// istanbul is a tool that instruments the source and then extracts out the statistics and generates reports
// here the grunt-template-jasmine-istanbul package is instrumenting the source and creating the coverage
// information. See the coverage-task for where the reports are generated.
var coverageTask = {
src: [sharedConfig.releaseFile],
options: {
specs: [sharedConfig.rolledupTests + '/unit/**/*-spec.js'],
outfile: sharedConfig.jasmineCoverageOutputFile,
template: require('grunt-template-jasmine-istanbul'),
templateOptions: {
coverage: sharedConfig.dist + '/coverage/coverage.json',
report: []
}
}
};
// Runs the requirejs wrapper test
var buildRequireJSTask = {
options: {
specs: [sharedConfig.rolledupTests + '/build/**/*-spec.js'],
outfile: sharedConfig.jasmineBuildRequireJSOutputFile
}
};
// Generates a test runner that can be used to debug the tests without bundles or coverage - used to debug the tests in a browser
var unitTask = {
src: [sharedConfig.releaseFile],
options: {
specs: [sharedConfig.rolledupTests + '/unit/**/*-spec.js'],
outfile: sharedConfig.jasmineTestUnitOutputFile
}
};
// Runs the integration tests
var integrationTask = {
src: [sharedConfig.releaseFile],
options: {
specs: [sharedConfig.rolledupTests + '/integration/**/*-spec.js'],
outfile: sharedConfig.jasmineTestIntegrationOutputFile
}
};
module.exports = {
options: globalOptions,
'coverage': coverageTask,
'build-requirejs': buildRequireJSTask,
'unit': unitTask,
'integration': integrationTask
};