Browse Source

Added bender configuration to test the build version.

fredck 10 years ago
parent
commit
d192057570
1 changed files with 10 additions and 1 deletions
  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/**',