File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -228,20 +228,40 @@ release: tag_major_minor
228
228
docker push $(NAME ) /standalone-chrome-debug:$(MAJOR_MINOR_PATCH )
229
229
docker push $(NAME ) /standalone-firefox-debug:$(MAJOR_MINOR_PATCH )
230
230
231
- test : test_chrome test_firefox test_phantomjs
231
+ test : test_chrome \
232
+ test_firefox \
233
+ test_chrome_debug \
234
+ test_firefox_debug \
235
+ test_chrome_standalone \
236
+ test_firefox_standalone \
237
+ test_chrome_standalone_debug \
238
+ test_firefox_standalone_debug
239
+
232
240
233
241
test_chrome :
234
242
VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh NodeChrome
235
243
244
+ test_chrome_debug :
245
+ VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh NodeChromeDebug
246
+
236
247
test_chrome_standalone :
237
248
VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh StandaloneChrome
238
249
250
+ test_chrome_standalone_debug :
251
+ VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh StandaloneChromeDebug
252
+
239
253
test_firefox :
240
254
VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh NodeFirefox
241
255
256
+ test_firefox_debug :
257
+ VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh NodeFirefoxDebug
258
+
242
259
test_firefox_standalone :
243
260
VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh StandaloneFirefox
244
261
262
+ test_firefox_standalone_debug :
263
+ VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh StandaloneFirefoxDebug
264
+
245
265
test_phantomjs :
246
266
VERSION=$(MAJOR_MINOR_PATCH ) NAMESPACE=$(NAMESPACE ) ./tests/bootstrap.sh NodePhantomJS
247
267
You can’t perform that action at this time.
0 commit comments