summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio André <claudioandre.br@gmail.com>2018-08-01 10:42:52 -0300
committerClaudio André <claudioandre.br@gmail.com>2018-08-01 10:42:52 -0300
commit8f98f4af7f6f233c205f547ecb513e47813606d0 (patch)
tree90111b670bf5177da55e0ff305c70ac7b322359d
parent4d663ace1e65dfbf50e42f16d69fc9fd5cd95590 (diff)
downloadgjs-8f98f4af7f6f233c205f547ecb513e47813606d0.tar.gz
CI: add webkit and gtk-app tests
-rwxr-xr-xinstalled-tests/scripts/testExamples.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/installed-tests/scripts/testExamples.sh b/installed-tests/scripts/testExamples.sh
index f258c8cf..d6bbc447 100755
--- a/installed-tests/scripts/testExamples.sh
+++ b/installed-tests/scripts/testExamples.sh
@@ -15,11 +15,19 @@ if [[ -n "${ENABLE_GTK}" ]]; then
eval timeout 5s $graphical_gjs examples/gtk.js
report_timeout "run the gtk.js example"
+ eval timeout 5s $graphical_gjs examples/gtk-application.js
+ report_timeout "run the gtk-application.js example"
+
eval timeout 5s $graphical_gjs examples/gettext.js
report_timeout "run the gettext.js example"
+
+ eval timeout 15s $graphical_gjs examples/webkit.js
+ report_timeout "run the webkit.js example"
else
skip "run the calc.js example" "running without GTK"
skip "run the gtk.js example" "running without GTK"
+ skip "run the gtk-application.js example" "running without GTK"
skip "run the gettext.js example" "running without GTK"
+ skip "run the webkit.js example" "running without GTK"
fi
echo "1..$total"