Skip to content

Commit 374a986

Browse files
authored
Enabling Edge tests (#1380)
1 parent 97008c7 commit 374a986

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,9 @@ release:
233233
test: test_chrome \
234234
test_firefox \
235235
test_chrome_standalone \
236-
test_firefox_standalone
236+
test_firefox_standalone \
237+
test_edge \
238+
test_edge_standalone
237239

238240

239241
test_chrome:
@@ -258,7 +260,7 @@ test_firefox_standalone:
258260
# Its main purpose is to check that a video file was generated.
259261
test_video: video hub chrome firefox edge
260262
# Running a few tests with docker-compose to generate the videos
261-
for node in NodeChrome NodeFirefox ; do \
263+
for node in NodeChrome NodeFirefox NodeEdge ; do \
262264
cd ./tests || true ; \
263265
echo VIDEO_TAG=$(FFMPEG_TAG_VERSION)-$(BUILD_DATE) > .env ; \
264266
echo TAG=$(TAG_VERSION) >> .env ; \
@@ -281,6 +283,7 @@ test_video: video hub chrome firefox edge
281283
# https://superuser.com/questions/100288/how-can-i-check-the-integrity-of-a-video-file-avi-mpeg-mp4
282284
docker run -v $$(pwd):$$(pwd) -w $$(pwd) jrottenberg/ffmpeg:4.3.1-ubuntu2004 -v error -i ./tests/videos/chrome_video.mp4 -f null - 2>error.log
283285
docker run -v $$(pwd):$$(pwd) -w $$(pwd) jrottenberg/ffmpeg:4.3.1-ubuntu2004 -v error -i ./tests/videos/firefox_video.mp4 -f null - 2>error.log
286+
docker run -v $$(pwd):$$(pwd) -w $$(pwd) jrottenberg/ffmpeg:4.3.1-ubuntu2004 -v error -i ./tests/videos/edge_video.mp4 -f null - 2>error.log
284287

285288
.PHONY: \
286289
all \

0 commit comments

Comments
 (0)