-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DEVEXP-488: Move AvailableNumbers and ActiveNumbers related operations #117
DEVEXP-488: Move AvailableNumbers and ActiveNumbers related operations #117
Conversation
import { PageResult } from '@sinch/sdk-client'; | ||
import assert from 'assert'; | ||
|
||
let activeNumberApi: ActiveNumberApi; | ||
let numbersService: NumbersService; | ||
let listActiveNumbersResponse: PageResult<Numbers.ActiveNumber>; | ||
const activeNumbersList: Numbers.ActiveNumber[] = []; | ||
let activeNumber: Numbers.ActiveNumber; | ||
let error: any; | ||
|
||
Given('the Numbers service "Active Number" is available', function () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Finally, from anE2E point of view: there is no more "Active Number" (nor "Available") to wait for.
Just the Numbers service
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, I'll fix that!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix is made, with the associated feature file on the mockserver repo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The build will need to be re-triggered when the new feature file is merged, otherwise cucumber complains the steps are not defined
No description provided.