We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eee74b9 commit fc61114Copy full SHA for fc61114
.circleci/config.yml
@@ -114,6 +114,9 @@ jobs:
114
command: |
115
sudo apt-get install -y xvfb
116
Xvfb :99 -screen 0 1920x1080x24 &
117
+ - run:
118
+ name: Install dependencies
119
+ command: cd tests/e2e && yarn install
120
- run:
121
name: Compile TypeScript
122
command: cd tests/e2e && yarn compile
.circleci/e2e/test.app.sh
@@ -1,7 +1,8 @@
1
#!/bin/bash
2
set -e
3
4
-yarn --cwd tests/e2e install
+# Moved to config.yml
5
+# yarn --cwd tests/e2e install
6
7
# Create folder before tests run to prevent permissions issues
8
mkdir -p tests/e2e/remote
0 commit comments