8000 Allow running test suites individually · mysqljs/mysql@e724fd5 · GitHub
[go: up one dir, main page]

Skip to content

Commit e724fd5

Browse files
committed
Allow running test suites individually
1 parent dbaec6d commit e724fd5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
test:
1+
test-simple:
22
@find test/simple/test-*.js | xargs -n 1 -t node
3+
test-system:
34
@find test/system/test-*.js | xargs -n 1 -t node
5+
test: test-simple test-system
46
test-all: test
57
@find test/system/slow/test-*.js | xargs -n 1 -t node
68
benchmark-node-mysql:

0 commit comments

Comments
 (0)
0