Skip to content
This repository has been archived by the owner on Jan 7, 2022. It is now read-only.

Commit

Permalink
Try to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antban committed Sep 9, 2021
1 parent 6082ddd commit 5a7b1d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/end2end/createEtForm.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('Create Event type form', function() {
.isEnabled('button=Create Event Type').then(function(enabled) {
expect(enabled).toBeFalsy('Submit btn should be disabled if owning application is not set')
})
.setValue('#eventTypeCreateFormFieldOwningApplication', 'some-owning-app')
.setValue('#eventTypeCreateFormFieldOwningApplication', 'stups_nakadi-ui-elm')
.isEnabled('button=Create Event Type').then(function(enabled) {
expect(enabled).toBeTruthy('Submit btn should be enabled if name and owning app are set')
})
Expand Down
2 changes: 1 addition & 1 deletion tests/end2end/createSubscriptionForm.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('Create Subscription form', function() {
})
.setValue('#subscriptionCreateFormFieldConsumerGroup', 'test-group')
.setValue('#subscriptionCreateFormFieldEventTypes', eventTypeName)
.setValue('#subscriptionCreateFormFieldOwningApplication', 'someowningapplication')
.setValue('#subscriptionCreateFormFieldOwningApplication', 'stups_nakadi-ui-elm')
.isEnabled('button=Create Subscription').then(function(enabled) {
expect(enabled).toBeTruthy('Submit btn should be enabled if name is set')
})
Expand Down

0 comments on commit 5a7b1d5

Please sign in to comment.