aboutsummaryrefslogtreecommitdiff
path: root/sources/samples/toolbarconfigurator/bender.js
blob: d592866cd2db64911f89fc56d5f18992a7fd4783 (plain) (blame)
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
/* jshint browser: false, node: true */

'use strict';

var config = {

	applications: {
		ckeditor: {
			path: '../../',
			files: [
				'ckeditor.js'
			]
		},

		codemirror: {
			path: '.',
			files: [
				'js/lib/codemirror/codemirror.js'
			]
		},

		toolbartool: {
			path: '.',
			files: [
				'js/fulltoolbareditor.js',
				'js/abstracttoolbarmodifier.js',
				'js/toolbarmodifier.js',
				'js/toolbartextmodifier.js'
			]
		}
	},

	plugins: [
		'node_modules/benderjs-mocha',
		'node_modules/benderjs-chai'
	],

	framework: 'mocha',

	tests: {
		'main': {
			applications: [ 'ckeditor', 'codemirror', 'toolbartool' ],
			basePath: 'tests/',
			paths: [
				'**',
				'!**/_*/**'
			]
		}
	}
};

module.exports = config;