Skip to content

Commit bac6685

Browse files
committed
tasks: move test syntax script to tasks/
1 parent 5758129 commit bac6685

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"citest-jasmine": "karma start test/jasmine/karma.ciconf.js",
3636
"test-image": "node tasks/test_image.js",
3737
"test-export": "node tasks/test_export.js",
38-
"test-syntax": "node test/syntax_test.js",
38+
"test-syntax": "node tasks/test_syntax.js",
3939
"test-bundle": "node tasks/test_bundle.js",
4040
"test": "npm run citest-jasmine && npm run test-image && npm run test-syntax && npm run test-bundle",
4141
"start-test_dashboard": "node devtools/test_dashboard/server.js",

test/syntax_test.js renamed to tasks/test_syntax.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ var fs = require('fs');
44
var falafel = require('falafel');
55
var glob = require('glob');
66

7-
var constants = require('../tasks/util/constants');
8-
7+
var constants = require('./util/constants');
98
var srcGlob = path.join(constants.pathToSrc, '**/*.js');
109
var libGlob = path.join(constants.pathToLib, '**/*.js');
1110
var testGlob = path.join(constants.pathToJasmineTests, '**/*.js');

0 commit comments

Comments
 (0)