Configuration clenup

This commit is contained in:
jdescottes 2014-08-26 01:11:14 +02:00
parent efccfdc0c6
commit 35d4be5d3e
4 changed files with 5 additions and 8 deletions

View File

@ -31,7 +31,7 @@ module.exports = function(grunt) {
var casperEnvironments = {
'local' : {
suite : './test/integration/casperjs/TestSuite.js',
suite : './test/integration/casperjs/LocalTestSuite.js',
delay : 50
},
'travis' : {

View File

@ -6,7 +6,7 @@ module.exports = function(config) {
var mapToSrcFolder = function (path) {return ['src', path].join('/');};
var piskelScripts = require('./src/piskel-script-list.js').scripts.map(mapToSrcFolder);
piskelScripts.push('test/**/*.js');
piskelScripts.push('test/js/**/*.js');
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
@ -23,10 +23,7 @@ module.exports = function(config) {
// list of files to exclude
exclude: [
'src/js/app.js',
'test/integration/**/*.js'
],
exclude: [],
// preprocess matching files before serving them to the browser
@ -55,7 +52,7 @@ module.exports = function(config) {
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
autoWatch: true,
// start these browsers

View File

@ -3,7 +3,7 @@
"name": "piskel",
"main": "./dest/index.html",
"description": "Web based 2d animations editor",
"version": "0.1.1",
"version": "0.2.0",
"homepage": "http://github.com/juliandescottes/piskel",
"repository": {
"type": "git",