New: Cross Browser Testing UI

This commit is contained in:
Qstick 2019-09-16 21:27:15 +01:00
commit 22d48ab8aa
7 changed files with 168 additions and 65 deletions

View file

@ -25,7 +25,7 @@ export LIDARR_TESTS_LOG_OUTPUT="File"
NUNIT="$TEST_DIR/NUnit.ConsoleRunner.3.10.0/tools/nunit3-console.exe"
NUNIT_COMMAND="$NUNIT"
NUNIT_PARAMS="--workers=1"
NUNIT_PARAMS=""
if [ "$PLATFORM" = "Mac" ]; then
@ -53,6 +53,7 @@ if [ "$TYPE" = "Unit" ]; then
WHERE="$WHERE && cat != IntegrationTest && cat != AutomationTest"
elif [ "$TYPE" = "Integration" ] || [ "$TYPE" = "int" ] ; then
WHERE="$WHERE && cat == IntegrationTest"
NUNIT_PARAMS="--workers=1"
elif [ "$TYPE" = "Automation" ] ; then
WHERE="$WHERE && cat == AutomationTest"
else