Skip to content

Commit 4c43eb0

Browse files
committed
Fix Grunt task "test_tabris"
A missing quotation mark caused the mocha tests written in TypeScript to not be executed. Change-Id: Ia4bffb73c52550c97c0f945f5dd40d6c82aac564
1 parent a97045b commit 4c43eb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ module.exports = function(grunt) {
102102
},
103103
test_tabris: {
104104
cmd: 'node node_modules/mocha/bin/mocha --colors --require ts-node/register '
105-
+ '"test/tabris/**/*.test.js" test/tabris/**/*.test.ts"',
105+
+ '"test/tabris/**/*.test.js" "test/tabris/**/*.test.ts"',
106106
options: {env: Object.assign({
107107
TS_NODE_PROJECT: './tsconfig.json',
108108
// This needs to stay true as long as the tsconfig.json of src/tabris (used for bundle_tabris)

0 commit comments

Comments
 (0)