cleanup testacular config
This commit is contained in:
parent
687246128c
commit
2ebe67f110
2
spec/after.js
Normal file
2
spec/after.js
Normal 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
3
spec/before.js
Normal file
@ -0,0 +1,3 @@
|
||||
// set up before Leaflet files to test L#noConflict later
|
||||
L = 'test';
|
||||
|
@ -1 +0,0 @@
|
||||
L.Icon.Default.imagePath = "http://leafletjs.com/dist/images/marker-icon@2x.png";
|
@ -1,3 +0,0 @@
|
||||
// set up context before tests
|
||||
L = 'test'; //to test L#noConflict later
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user