Merge branch 'develop' of github.com:HabitRPG/habitrpg into api-v3

This commit is contained in:
Matteo Pagliazzi
2016-03-02 12:59:51 +01:00
97 changed files with 14671 additions and 17976 deletions

View File

@@ -139,7 +139,7 @@ gulp.task('test:content:clean', (cb) => {
});
gulp.task('test:content:watch', ['test:content:clean'], () => {
gulp.watch(['common/script/src/content/**', 'test/**'], ['test:content:clean']);
gulp.watch(['common/script/content/**', 'test/**'], ['test:content:clean']);
});
gulp.task('test:content:safe', ['test:prepare:build'], (cb) => {
@@ -429,13 +429,13 @@ gulp.task('test:api-v3:safe', ['test:prepare:server'], (done) => {
gulp.task('test:all', (done) => {
runSequence(
'lint',
// 'test:e2e:safe',
//'test:e2e:safe',
//'test:common:safe',
// 'test:content:safe',
//'test:server_side:safe',
// 'test:karma:safe',
// 'test:api-legacy:safe',
// 'test:api-v2:safe',
//'test:content:safe',
// 'test:server_side:safe',
//'test:karma:safe',
//'test:api-legacy:safe',
//'test:api-v2:safe',
'test:api-v3:safe',
done);
});