From ef506477da5d081d2543dbbb548f4bb5cbfe99e9 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Fri, 12 Nov 2021 19:05:27 +0100 Subject: [PATCH] test --- apps/remix-ide/ci/lint.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/remix-ide/ci/lint.sh b/apps/remix-ide/ci/lint.sh index 0bda707d82..6887cf48d5 100755 --- a/apps/remix-ide/ci/lint.sh +++ b/apps/remix-ide/ci/lint.sh @@ -8,13 +8,15 @@ TEST_EXITCODE=0 npm run build:e2e KEYS=$(jq -r '.projects | keys' workspace.json | tr -d '[],"') +# add .js to every key +KEYS=$(echo $KEYS | sed 's/\(.*\)/\1.js/') TESTFILES=$(circleci tests glob "dist/apps/remix-ide-e2e/src/tests/**/*.test.js") echo $TESTFILES TESTFILES=$(circleci tests glob "dist/apps/remix-ide-e2e/src/tests/**/*.test.js" | circleci tests split --split-by=timings) echo $TESTFILES TESTFILES=$(echo $KEYS | circleci tests split) echo $TESTFILES -KETS = "test1.js test2.js" +KEYS="test1.js test2.js" TESTFILES=$(echo $KEYS | circleci tests split) echo $TESTFILES