Skip to content
This repository has been archived by the owner on Feb 14, 2018. It is now read-only.

Commit

Permalink
Include plugin tests in test client
Browse files Browse the repository at this point in the history
  • Loading branch information
moredip committed Aug 3, 2012
1 parent ce7e727 commit 97f50fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/builder.pl
Expand Up @@ -23,7 +23,7 @@ sub run {
} }


while (sleep 1) { while (sleep 1) {
$new = `ls -lt *.coffee lib/*.coffee test/*.coffee`; $new = `ls -lt *.coffee lib/*.coffee test/*.coffee plugins/*/*.coffee`;
next if $old eq $new; next if $old eq $new;
$old = $new; $old = $new;
say('client.'); say('client.');
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Expand Up @@ -8,7 +8,7 @@
"browserify": "*" "browserify": "*"
}, },
"scripts": { "scripts": {
"test": "./node_modules/.bin/browserify testclient.coffee -o test/testclient.js", "test": "./node_modules/.bin/browserify testclient.coffee ./plugins/*/test.coffee -o test/testclient.js",
"start": "./node_modules/.bin/browserify client.coffee -o client.js" "start": "./node_modules/.bin/browserify client.coffee -o client.js"
}, },
"devDependencies": { "devDependencies": {
Expand Down

0 comments on commit 97f50fe

Please sign in to comment.