Skip to content

Commit

Permalink
test: IE11 tests have HOST=localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
bengourley committed Jan 2, 2020
1 parent 9291512 commit 03ee047
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/browser/features/fixtures/release_stage/script/e.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
var bugsnagClient = bugsnag({
apiKey: API_KEY,
endpoints: { notify: ENDPOINT, sessions: '/noop' },
enabledReleaseStages: null
enabledReleaseStages: null,
releaseStage: 'development'
})
</script>
</head>
Expand Down
4 changes: 2 additions & 2 deletions test/browser/features/release_stage.feature
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ Scenario: setting releaseStage=staging enabledReleaseStages=[production,staging]
And the request is a valid browser payload for the error reporting API
And the event "app.releaseStage" equals "staging"

Scenario: setting enabledReleaseStages=null
Scenario: setting releaseStage=development enabledReleaseStages=null
When I navigate to the URL "/release_stage/script/e.html"
Then I wait to receive a request
And the request is a valid browser payload for the error reporting API
And the event "app.releaseStage" equals "production"
And the event "app.releaseStage" equals "development"

Scenario: setting enabledReleaseStages=[]
When I navigate to the URL "/release_stage/script/f.html"
Expand Down

0 comments on commit 03ee047

Please sign in to comment.