Skip to content

Commit dfe0ad3

Browse files
authored
test(integration): add integration tests (#12)
1 parent c1c1c7e commit dfe0ad3

File tree

15 files changed

+876
-2
lines changed

15 files changed

+876
-2
lines changed

.circleci/config.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ jobs:
2323
- checkout
2424
- ruby/install-deps
2525
- run:
26-
name: Fastlane test
26+
name: Unit tests
2727
command: bundle exec fastlane ios tests
28+
- run:
29+
name: Integration tests
30+
command: bundle exec fastlane ios integration_tests
2831

2932
build-test-macos:
3033
<<: *default-executor
@@ -33,7 +36,7 @@ jobs:
3336
- checkout
3437
- ruby/install-deps
3538
- run:
36-
name: Fastlane test
39+
name: Unit tests
3740
command: bundle exec fastlane mac tests
3841

3942
release:

IntegrationTestApp/.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Swift Package Manager
2+
.build/
3+
!.swiftpm/xcode/package.xcworkspace
4+
5+
# Xcode
6+
## User settings
7+
xcuserdata/
8+
9+
## Obj-C/Swift specific
10+
*.hmap
11+
12+
## App packaging
13+
*.ipa
14+
*.dSYM.zip
15+
*.dSYM

0 commit comments

Comments
 (0)