forked from syncfusion/ej2-javascript-ui-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-main.js
72 lines (66 loc) · 2.62 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
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
let allTestFiles = [];
let TEST_REGEXP = /(spec|test)\.js$/i;
// Get a list of all the test files to include
Object.keys(window.__karma__.files).forEach(function (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
let normalizedTestModule = file.replace(/^\/base\/|\.js$/g, '');
allTestFiles.push(normalizedTestModule);
}
});
// eslint-disable-next-line no-undef
require.config({
// Karma serves files under /base, which is the basePath from your config file
baseUrl: '/base',
packages: [
{
name: '@syncfusion/ej2-base',
location: 'node_modules/@syncfusion/ej2-base/dist',
main: 'ej2-base.umd.min.js'
}, {
name: '@syncfusion/ej2-buttons',
location: 'node_modules/@syncfusion/ej2-buttons/dist',
main: 'ej2-buttons.umd.min.js'
}, {
name: '@syncfusion/ej2-data',
location: 'node_modules/@syncfusion/ej2-data/dist',
main: 'ej2-data.umd.min.js'
}, {
name: '@syncfusion/ej2-dropdowns',
location: 'node_modules/@syncfusion/ej2-dropdowns/dist',
main: 'ej2-dropdowns.umd.min.js'
}, {
name: '@syncfusion/ej2-inputs',
location: 'node_modules/@syncfusion/ej2-inputs/dist',
main: 'ej2-inputs.umd.min.js'
}, {
name: '@syncfusion/ej2-lists',
location: 'node_modules/@syncfusion/ej2-lists/dist',
main: 'ej2-lists.umd.min.js'
}, {
name: '@syncfusion/ej2-popups',
location: 'node_modules/@syncfusion/ej2-popups/dist',
main: 'ej2-popups.umd.min.js'
}, {
name: '@syncfusion/ej2-navigations',
location: 'node_modules/@syncfusion/ej2-navigations/dist',
main: 'ej2-navigations.umd.min.js'
}, {
name: '@syncfusion/ej2-splitbuttons',
location: 'node_modules/@syncfusion/ej2-splitbuttons/dist',
main: 'ej2-splitbuttons.umd.min.js'
}, {
name: '@syncfusion/ej2-notifications',
location: 'node_modules/@syncfusion/ej2-notifications/dist',
main: 'ej2-notifications.umd.min.js'
}
],
// dynamically load all test files
deps: allTestFiles,
// we have to kickoff jasmine, as it is asynchronous
callback: window.__karma__.start,
// number of seconds to wait before giving up on loading a script
waitSeconds: 30
});