forked from ckeditor/ckeditor5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbender.js
47 lines (40 loc) · 743 Bytes
/
bender.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
/* jshint browser: false, node: true */
'use strict';
const config = {
plugins: [
'benderjs-chai',
'benderjs-coverage',
'benderjs-mocha',
'benderjs-promise',
'benderjs-sinon',
'dev/bender/plugins/ckeditor5'
],
framework: 'mocha',
applications: {
ckeditor: {
path: '.',
files: [
'node_modules/requirejs/require.js'
],
basePath: '/apps/ckeditor/build/amd/'
}
},
tests: {
all: {
applications: [ 'ckeditor' ],
paths: [
'build/amd/tests/**',
'!build/amd/tests/**/@(_utils|_assets)/**'
]
}
},
coverage: {
paths: [
'build/amd/ckeditor.js',
'build/amd/ckeditor5/**/*.js',
'build/amd/tests/**/_*/*.js',
'!build/amd/ckeditor5/*/lib/**'
]
}
};
module.exports = config;