Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 26 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests.bash
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ then

killandsleep 8000

REMOTE_MANAGEMENT_DISABLE=0 S3BACKEND=file S3VAULT=mem npm start > $CIRCLE_ARTIFACTS/server_file_management.txt & bash wait_for_local_port.bash 8000 40 && npm run ft_management
S3BACKEND=file S3VAULT=mem npm start > $CIRCLE_ARTIFACTS/server_file_management.txt & bash wait_for_local_port.bash 8000 40 && npm run ft_management

killandsleep 8000

Expand Down Expand Up @@ -187,7 +187,7 @@ then

killandsleep 8000

REMOTE_MANAGEMENT_DISABLE=0 S3BACKEND=file S3VAULT=mem npm start > $CIRCLE_ARTIFACTS/server_file_kms_management.txt & bash wait_for_local_port.bash 8000 40 && ENABLE_KMS_ENCRYPTION=true npm run ft_management
S3BACKEND=file S3VAULT=mem npm start > $CIRCLE_ARTIFACTS/server_file_kms_management.txt & bash wait_for_local_port.bash 8000 40 && ENABLE_KMS_ENCRYPTION=true npm run ft_management

killandsleep 8000

Expand Down
2 changes: 1 addition & 1 deletion tests/functional/report/checkRoutes.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('Report route', () => {

it('should contain config', done => {
queryReport(done, response => {
if (!response.config || !response.config.overlayVersion) {
if (!response.config) {
return done(new Error('response missing config'));
}
return done();
Expand Down