forked from openannotation/annotator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
103 lines (89 loc) · 3.04 KB
/
karma.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
module.exports = function (karma) {
karma.set({
frameworks: ["mocha", "browserify"],
files: [
// Fixtures
{pattern: 'test/fixtures/*.html', included: false},
// IE-specific shims
{pattern: 'node_modules/wgxpath/wgxpath.install.js', watched: false},
// Test harness
{pattern: 'node_modules/sinon/pkg/sinon.js', watched: false},
{pattern: 'node_modules/sinon/pkg/sinon-ie.js', watched: false},
// Test suites
'test/spec/**/*_spec.js'
],
exclude: [
'test/spec/bootstrap_spec.js',
'test/spec/plugin/auth_spec.js',
'test/spec/plugin/markdown_spec.js',
'test/spec/plugin/tags_spec.js'
],
preprocessors: {
'node_modules/wgxpath/wgxpath.install.js': 'browserify',
'test/spec/**/*_spec.js': 'browserify'
},
browserify: {
debug: true,
prebundle: function (bundle) {
// This allows annotator-plugintools to require annotator as
// 'annotator' in the test environment.
bundle.require('./src/annotator', {expose: 'annotator'});
}
},
browsers: ['PhantomJS'],
reporters: ['dots'],
customLaunchers: {
'SL_Chrome': {
base: 'SauceLabs',
browserName: 'chrome',
version: '38'
},
'SL_Firefox': {
base: 'SauceLabs',
browserName: 'firefox',
version: '33'
},
'SL_Safari': {
base: 'SauceLabs',
browserName: 'safari',
platform: 'OS X 10.9',
version: '7'
},
'SL_IE_8': {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 7',
version: '8'
},
'SL_IE_9': {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 7',
version: '9'
},
'SL_IE_10': {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 8',
version: '10'
},
'SL_IE_11': {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 8.1',
version: '11'
}
},
sauceLabs: {
testName: 'Annotator'
}
});
if (process.env.TRAVIS) {
var buildLabel = 'TRAVIS #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')';
karma.sauceLabs.build = buildLabel;
karma.sauceLabs.startConnect = false;
karma.sauceLabs.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
karma.browsers = [process.env.BROWSER];
karma.reporters = ['dots', 'saucelabs'];
}
};