-
-
Notifications
You must be signed in to change notification settings - Fork 983
/
test-main.js
33 lines (27 loc) · 1.09 KB
/
test-main.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
const allTestFiles = []
const TEST_REGEXP = /(spec|test)\.js$/i
// Get a list of all the test files to include
// eslint-disable-next-line no-underscore-dangle
Object.keys(window.__karma__.files).forEach((file) => {
if (TEST_REGEXP.test(file)) {
// Normalize paths to RequireJS module names.
// If you require sub-dependencies of test files to be loaded as-is (requiring file extension)
// then do not normalize the paths
const normalizedTestModule = file.replaceAll(/^\/base\/|\.js$/g, '')
allTestFiles.push(normalizedTestModule)
}
})
require.config({
// Karma serves files under /base, which is the basePath from your config file
baseUrl: '/base',
paths: {
jquery: 'node_modules/jquery/dist/jquery',
iframeResizerParent: 'test-js/iframe-resizer.parent',
iframeResizerJquery: 'test-js/iframe-resizer.jquery',
iframeResizerChild: 'test-js/iframe-resizer.child',
},
// dynamically load all test files
deps: allTestFiles,
// we have to kickoff jasmine, as it is asynchronous
callback: window.__karma__.start, // eslint-disable-line no-underscore-dangle
})