cleanup testacular config

This commit is contained in:
Vladimir Agafonkin 2013-01-31 15:44:55 +02:00
parent 687246128c
commit 2ebe67f110
5 changed files with 33 additions and 42 deletions

2
spec/after.js Normal file
View File

@ -0,0 +1,2 @@
// put after Leaflet files as imagePath can't be detected in a PhantomJS env
L.Icon.Default.imagePath = "../dist/images";

3
spec/before.js Normal file
View File

@ -0,0 +1,3 @@
// set up before Leaflet files to test L#noConflict later
L = 'test';

View File

@ -1 +0,0 @@
L.Icon.Default.imagePath = "http://leafletjs.com/dist/images/marker-icon@2x.png";

View File

@ -1,3 +0,0 @@
// set up context before tests
L = 'test'; //to test L#noConflict later

View File

@ -1,5 +1,5 @@
// Testacular configuration
// Generated on Sat Jan 19 2013 16:24:31 GMT-0200 (BRST)
var libSources = require(__dirname+'/../build/build.js').getFiles();
// base path, that will be used to resolve files and exclude
@ -13,10 +13,10 @@ for (var i=0; i < libSources.length; i++) {
files = [].concat([
JASMINE,
JASMINE_ADAPTER,
"before.js"
], libSources, [
"after.js",
"happen.js",
"context.js"],
libSources,
["beforeTestsContext.js",
"suites/SpecHelper.js",
"suites/LeafletSpec.js",
"suites/control/Control.LayersSpec.js",
@ -36,40 +36,32 @@ files = [].concat([
"suites/layer/vector/PolylineGeometrySpec.js",
"suites/layer/vector/CircleSpec.js",
"suites/map/MapSpec.js"
]);
]);
// list of files to exclude
exclude = [
];
// test results reporter to use
// possible values: 'dots', 'progress', 'junit'
reporters = ['dots'];
// web server port
port = 8080;
// cli runner port
runnerPort = 9100;
// enable / disable colors in the output (reporters and logs)
colors = true;
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel = LOG_INFO;
// enable / disable watching file and executing tests whenever any file changes
autoWatch = false;
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
@ -80,11 +72,9 @@ autoWatch = false;
// - IE (only Windows)
browsers = ['PhantomJS'];
// If browser does not capture in given timeout [ms], kill it
captureTimeout = 5000;
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun = true;