ember-cli/ember-try

View on GitHub
test/fixtures/dummy-ember-try-config-different-env-vars.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  useYarn: true,
  scenarios: [
    {
      name: 'test1',
      command: './fail-if-no-foo.sh',
      env: {
        FOO: true,
      },
      npm: {},
    },
    {
      name: 'test2',
      command: './fail-if-foo.sh',
      npm: {},
    },
  ],
};