瀏覽代碼

Added bender configuration to test the build version.

fredck 10 年之前
父節點
當前提交
d192057570
共有 1 個文件被更改,包括 10 次插入1 次删除
  1. 10 1
      bender.js

+ 10 - 1
bender.js

@@ -16,17 +16,26 @@ var config = {
 	framework: 'mocha',
 
 	applications: {
-		ckeditor: {
+		'ckeditor': {
 			path: '.',
 			files: [
 				'node_modules/requirejs/require.js',
 				'ckeditor.js'
 			]
+		},
+
+		'ckeditor-build': {
+			path: 'build',
+			files: [
+				'ckeditor.js'
+			]
 		}
 	},
 
 	tests: {
 		all: {
+			// Swap the following "applications" lines to test the build version.
+			// applications: [ 'ckeditor-build' ],
 			applications: [ 'ckeditor' ],
 			paths: [
 				'tests/**',