File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,14 @@ node-command := xargs -n 1 -I file node file $(params)
12
12
all :
13
13
npm install
14
14
15
+ build :
16
+ node-gyp rebuild
17
+
15
18
help :
16
19
@echo " make prepare-test-db [connectionString=postgres://<your connection string>]"
17
20
@echo " make test-all [connectionString=postgres://<your connection string>]"
18
21
19
- test : test-unit
22
+ test : test-unit
20
23
21
24
test-all : jshint test-unit test-integration test-native test-binary
22
25
@@ -49,7 +52,7 @@ test-native: build/default/binding.node
49
52
@find test/native -name " *-tests.js" | $(node-command )
50
53
@find test/integration -name " *-tests.js" | $(node-command ) native
51
54
52
- test-integration : test-connection
55
+ test-integration : test-connection build/default/binding.node
53
56
@echo " ***Testing Pure Javascript***"
54
57
@find test/integration -name " *-tests.js" | $(node-command )
55
58
You can’t perform that action at this time.
0 commit comments