Skip to content

Commit fc61114

Browse files
committed
fix 7
1 parent eee74b9 commit fc61114

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ jobs:
114114
command: |
115115
sudo apt-get install -y xvfb
116116
Xvfb :99 -screen 0 1920x1080x24 &
117+
- run:
118+
name: Install dependencies
119+
command: cd tests/e2e && yarn install
117120
- run:
118121
name: Compile TypeScript
119122
command: cd tests/e2e && yarn compile

.circleci/e2e/test.app.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/bin/bash
22
set -e
33

4-
yarn --cwd tests/e2e install
4+
# Moved to config.yml
5+
# yarn --cwd tests/e2e install
56

67
# Create folder before tests run to prevent permissions issues
78
mkdir -p tests/e2e/remote

0 commit comments

Comments
 (0)