Skip to content

Commit 55b9ecf

Browse files
authored
5.4.1 release (#72)
1 parent 488cd6b commit 55b9ecf

52 files changed

Lines changed: 4327 additions & 7010 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@ yarn-debug.log*
2626
yarn-error.log*
2727
*.tsbuildinfo
2828

29+
node/**
30+
target/**
31+
2932
# config
3033
packages/example/public/config.js
3134
packages/healthcare/public/config.js
3235

33-
# cypress
34-
cypress/screenshots
35-
/.idea/
36-
/apihub.iml
36+
# Editor artifacts
37+
.idea/*
38+
!.idea/copyright
39+
.vscode

.travis.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ dist: xenial
22
language: node_js
33
node_js:
44
- '12.16.3'
5+
- 'lts/*'
56
addons:
67
chrome: stable
78
firefox: latest
@@ -28,12 +29,27 @@ script: make test
2829

2930
stages:
3031
- name: test
32+
- name: deploy
3133
if: branch = master
3234

3335
jobs:
3436
include:
3537
- stage: test
36-
name: Units and E2E tests
38+
name: Unit tests
3739
env:
3840
- DEPLOY_ENV=test
3941
- NODE_ENV=test
42+
- stage: deploy
43+
name: Deploy
44+
env:
45+
- DEPLOY_ENV=integration
46+
- NODE_ENV=production
47+
install: NODE_ENV=development make install # Install development dependencies
48+
script: skip
49+
before_deploy:
50+
- pip install --user awscli
51+
- export PATH=$PATH:$HOME/.local/bin
52+
deploy:
53+
skip_cleanup: true
54+
provider: script
55+
script: make deploy

Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,14 @@ watch-lib: ## Starts the library in development mode
3434

3535
#### Tests ####
3636

37-
test: test-unit test-e2e ## Runs the tests. Usage BROWSER=[chrome|firefox] make test.
37+
test: test-unit ## Runs the tests. Usage BROWSER=[chrome|firefox] make test.
3838

3939
test-unit: ## Runs the unit tests. Usage make test-unit.
4040
@yarn test
4141

4242
test-unit-coverage: ## Runs the unit tests with coverage report. Usage make test-unit-coverage.
4343
@yarn test:coverage
4444

45-
test-e2e: build build-example ## Runs the end-to-end tests. Usage BROWSER=[chrome|firefox] make test-e2e.
46-
@NODE_ENV=test cd cypress && yarn -s start
47-
48-
test-e2e-local: ## Opens the end-to-end tests GUI. Usage make test-e2e-local.
49-
@echo 'Starting e2e tests environment. Ensure you started the example first (make start)'.
50-
@cd cypress && yarn -s start-gui
51-
5245
#### Code Formatting ####
5346

5447
lint: ## Runs linting tools

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ make start
5757

5858
### Run the Tests
5959

60-
Run the unit tests and the E2E tests by issuing the following command:
60+
Run the unit tests by issuing the following command:
6161

6262
```
6363
make test

cypress/.eslintrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

cypress/README.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

cypress/cypress.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

cypress/integration/accountSetup.js

Lines changed: 0 additions & 84 deletions
This file was deleted.

0 commit comments

Comments
 (0)