We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d4620b commit bd24649Copy full SHA for bd24649
1 file changed
Makefile
@@ -168,8 +168,6 @@ build-javascript:
168
npm install --dev && \
169
npm link && \
170
npm run build
171
- cd test/javascript/ && \
172
- npm link ../../clients/javascript/generated/
173
174
build-python:
175
cd clients/python/generated/ && \
@@ -196,9 +194,10 @@ test-javascript: build-javascript
196
194
npm install validator
197
195
cd clients/javascript/generated/ && \
198
199
- npm run test && \
200
- npm link
201
- mocha --timeout 5000 test/javascript/
+ npm run test
+ cd test/javascript/ && \
+ npm link ../../clients/javascript/generated/ && \
+ mocha --timeout 5000 .
202
203
test-python: build-python
204
0 commit comments