Skip to content

Commit

Permalink
Allow running only particular tests
Browse files Browse the repository at this point in the history
  • Loading branch information
felixge committed Nov 15, 2011
1 parent b4ea478 commit fde3421
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,6 +1,6 @@
SHELL := /bin/bash

test:
@node test/run.js
@node test/run.js $(type)

.PHONY: test
3 changes: 2 additions & 1 deletion test/run.js
@@ -1 +1,2 @@
require('urun')(__dirname);
var path = require('path');
require('urun')(path.join(__dirname, process.argv[2]));

0 comments on commit fde3421

Please sign in to comment.