Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
253
Merge Requests
12
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Commits
5551aa8a
Commit
5551aa8a
authored
3 minutes ago
by
Martin Santangelo
Browse files
Options
Download
(fix) detox framework not found
parent
76abfb45
feat/e2e-detox-install
1 merge request
!411
WIP: Install detox and login e2e test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
.circleci/config.yml
View file @
5551aa8a
...
...
@@ -68,9 +68,18 @@ jobs:
-
restore_cache
:
key
:
node-v1-{{ checksum "package.json" }}-{{ arch }}
-
run
:
name
:
Install detox
command
:
|
HOMEBREW_NO_AUTO_UPDATE=1 brew tap wix/brew
HOMEBREW_NO_AUTO_UPDATE=1 brew install --HEAD applesimutils
npm install -g detox-cli
npm install -g detox
# not using a workspace here as Node and Yarn versions
# differ between our macOS executor image and the Docker containers above
-
run
:
yarn install
-
run
:
yarn install
--frozen-lockfile
-
save_cache
:
key
:
yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }}
...
...
@@ -108,14 +117,6 @@ jobs:
-
ios/Pods
# Run e2e
-
run
:
name
:
Load dependencies
command
:
|
brew update
brew tap wix/brew
brew install applesimutils
yarn global add detox-cli
-
run
:
detox build -c ios.sim.release
-
run
:
detox test -c ios.sim.release --cleanup
...
...
This diff is collapsed.
Please
register
or
sign in
to comment