forked from isomorphic-git/isomorphic-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.cjs
237 lines (228 loc) · 7.42 KB
/
karma.conf.cjs
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// Karma configuration
process.env.CHROME_BIN = require('puppeteer').executablePath()
const path = require('path')
const webpack = require('webpack')
const REPO = process.env.BUILD_REPOSITORY_NAME
const ISSUE =
process.env.SYSTEM_PULLREQUEST_PULLREQUESTNUMBER ||
process.env.SYSTEM_PULLREQUEST_PULLREQUESTID
const COMMIT = process.env.BUILD_SOURCEVERSION
module.exports = function (config) {
const options = {
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: [],
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'__tests__/index.webpack.js',
{
pattern: '__tests__/__fixtures__/**/*',
served: true,
watched: false,
included: false,
},
{
pattern: '__tests__/__fixtures__/**/.superblock.txt',
served: true,
watched: false,
included: false,
},
{
pattern: '__tests__/__fixtures__/**/.gitignore',
served: true,
watched: false,
included: false,
},
],
// list of files to exclude
exclude: [],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'__tests__/index.webpack.js': ['webpack'],
},
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// Increase timeouts since some actions take quite a while.
browserNoActivityTimeout: 4 * 60 * 1000, // default 10000
// https://support.saucelabs.com/hc/en-us/articles/225104707-Karma-Tests-Disconnect-Particularly-When-Running-Tests-on-Safari
browserDisconnectTimeout: 20000, // default 2000
browserDisconnectTolerance: 0, // default 0
captureTimeout: 4 * 60 * 1000, // default 60000
// SauceLabs browsers
customLaunchers: {
XXXsl_chrome: {
base: 'SauceLabs',
browserName: 'chrome',
extendedDebugging: true,
},
XXXsl_firefox: {
base: 'SauceLabs',
browserName: 'firefox',
},
sl_edge: {
base: 'SauceLabs',
browserName: 'MicrosoftEdge',
version: '79.0',
},
sl_safari: {
base: 'SauceLabs',
browserName: 'safari',
platform: 'macOS 10.15',
version: '13.1',
},
sl_ios_safari: {
base: 'SauceLabs',
deviceName: 'iPhone 11 Pro Max Simulator',
platformName: 'iOS',
platformVersion: '13.0',
browserName: 'Safari',
appiumVersion: '1.15.0',
},
XXXsl_android_chrome: {
base: 'SauceLabs',
deviceOrientation: 'portrait',
deviceName: 'Android GoogleAPI Emulator',
platformName: 'Android',
platformVersion: '7.1',
browserName: 'Chrome',
appiumVersion: '1.15.0',
},
bs_android_chrome: {
base: 'BrowserStack',
os: 'android',
os_version: '10.0',
browser: 'android',
device: 'Google Pixel 4',
real_mobile: true,
},
FirefoxHeadless: {
base: 'Firefox',
flags: ['-headless'],
},
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox'],
},
ChromeCanaryHeadlessNoSandbox: {
base: 'ChromeCanaryHeadless',
flags: ['--no-sandbox'],
},
},
sauceLabs: {
// Since tags aren't being sent correctly, I'm going to stick the branch name in here.
testName: `${REPO} / ${ISSUE} / ${COMMIT}`,
// Note: I added the Date.now() bit so that when I can click "Restart" on a Travis job,
// Sauce Labs does not simply append new test results to the old set that failed, which
// convinces karma that it failed again and always.
build: process.env.BUILD_BUILDID + '-' + Date.now(),
// Note: it does not appear that tags are being sent correctly.
tags: [ISSUE],
recordScreenshots: false,
recordVideo: false,
public: 'public restricted',
},
concurrency: 6,
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true,
// test results reporter to use
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['browsers', 'verbose', 'pr-comment', 'junit'],
junitReporter: {
outputDir: './junit',
},
webpack: {
mode: 'development',
devtool: 'inline-source-map',
plugins: [
new webpack.IgnorePlugin(/^(fs|@wmhilton\/jest-fixtures)$/),
new webpack.DefinePlugin({
'process.env.TEST_PUSH_GITHUB_TOKEN': `'${process.env.TEST_PUSH_GITHUB_TOKEN}'`,
}),
],
resolve: {
alias: {
'isomorphic-git/internal-apis': path.resolve(
__dirname,
'internal-apis.umd.min.js'
),
'isomorphic-git/http': path.resolve(__dirname, 'http/web/index.js'),
'isomorphic-git': path.resolve(__dirname, 'index.umd.min.js'),
},
},
},
plugins: [
'karma-browserstack-launcher',
'karma-chrome-launcher',
'karma-edge-launcher',
'karma-ie-launcher',
'karma-safari-launcher',
'karma-fail-fast-reporter',
'karma-firefox-launcher',
'karma-jasmine',
'karma-junit-reporter',
'karma-sauce-launcher',
'karma-verbose-reporter',
'karma-webpack',
{
'reporter:browsers': [
'type',
require('./__tests__/__helpers__/karma-successful-browsers-reporter.cjs'),
],
},
{
'reporter:pr-comment': [
'type',
require('./__tests__/__helpers__/karma-pr-comment-reporter.cjs'),
],
},
],
}
// Speed things up, at the cost of not saving the test results (except in the stdout log).
if (process.env.FAILFAST && process.env.FAILFAST === 'true') {
options.reporters.push('fail-fast')
}
if (!process.env.SAUCE_USERNAME) {
console.log(
'Skipping SauceLabs tests because SAUCE_USERNAME environment variable is not set.'
)
} else if (!process.env.SAUCE_ACCESS_KEY) {
console.log(
'Skipping SauceLabs tests because SAUCE_ACCESS_KEY environment variable is not set.'
)
} else {
options.reporters.push('saucelabs')
}
if (process.env.TEST_BROWSERS) {
options.browsers = process.env.TEST_BROWSERS.split(',')
} else if (!process.env.TEST_NO_BROWSERS) {
options.browsers.push('ChromeHeadlessNoSandbox')
options.browsers.push('FirefoxHeadless')
// options.browsers.push('Edge')
// options.browsers.push('ChromeCanaryHeadlessNoSandbox')
}
if (!process.env.TEST_NO_BROWSERS) {
// Only re-run browsers that failed in the previous run.
options.browsers =
require('./__tests__/__helpers__/karma-load-successful-browsers.cjs').filter(
options.browsers
)
console.log('running with browsers:', options.browsers)
}
if (!process.env.CI) {
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
options.singleRun = false
// enable / disable watching file and executing tests whenever any file changes
options.autoWatch = true
}
config.set(options)
}