Skip to content

Commit 217c965

Browse files
authored
Merge pull request #114 from humpbackdev/feature/update-deploy-enviroments
Update deploy enviroments
2 parents 3a4e3ef + 002a292 commit 217c965

File tree

180 files changed

+8382
-17730
lines changed

Some content is hidden

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

180 files changed

+8382
-17730
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ before_deploy:
1818
- npm install
1919
script:
2020
- 'mkdir $HOME/humpbacktest && cd $HOME/humpbacktest'
21-
- 'yo humpback --humanName="humpbacktest" --appName="humpbacktest"'
21+
- 'yo humpback --humanName="humpbacktest" --appName="humpbacktest" --deployEnv="Pantheon"'
2222
- npm audit | grep -E "(High | Critical)" -B3 -A10 ; CODE=$? ; if [ $CODE -eq 0 ] ; then echo "Vulnerabilities found" ; exit 1; fi
2323
- $HOME/circleci config validate
2424
deploy:

__tests__/app.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ var helpers = require('yeoman-test');
44

55
describe('generator-humpback:app', () => {
66
beforeAll(() => {
7-
return helpers
8-
.run(path.join(__dirname, '../generators/app'))
9-
.withPrompts({ humanName: 'Humpback', appName: 'humpback' });
7+
return helpers.run(path.join(__dirname, '../generators/app')).withPrompts({
8+
humanName: 'Humpback',
9+
appName: 'humpback',
10+
deployEnv: 'Platformsh',
11+
});
1012
});
1113

1214
it('creates files', () => {

0 commit comments

Comments
 (0)