We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9cd18f commit e255eddCopy full SHA for e255edd
Makefile
@@ -8,12 +8,12 @@ lib: ${SRC_FILES} package.json tsconfig.json node_modules rollup.config.js
8
@${BIN}/rollup -c && touch lib
9
10
.PHONY: test
11
-test: node_modules
+test: node_modules lib
12
@WHARFKIT_TEST=1 TS_NODE_PROJECT='./test/tsconfig.json' MOCK_DIR='./test/data/requests' \
13
${BIN}/mocha ${MOCHA_OPTS} ${TEST_FILES} --no-timeout --grep '$(grep)' --exit
14
15
.PHONY: ci-test
16
-ci-test: node_modules
+ci-test: node_modules lib
17
18
${BIN}/nyc ${NYC_OPTS} --reporter=text \
19
${BIN}/mocha ${MOCHA_OPTS} -R list ${TEST_FILES} --no-timeout --exit
0 commit comments