Skip to content

Commit

Permalink
tests(e2e): Fix sanity test
Browse files Browse the repository at this point in the history
  • Loading branch information
hartra344 committed Apr 27, 2024
1 parent 6ae2dc1 commit 1478001
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions e2e/designer/real-api/sanity-test.spec.ts
Expand Up @@ -24,6 +24,7 @@ test.describe(
await page.waitForResponse((resp) => resp.url().includes('/deployWorkflowArtifacts') && resp.status() === 200);
await page.getByTestId('card-When a HTTP request is received').getByLabel('When a HTTP request is').click();
const value = await page.getByRole('textbox', { name: 'URL will be generated after' }).inputValue();
await request.get(value);
const LAResult = await request.get(value);
expect(LAResult.status()).toBe(200);
expect(await LAResult.text()).toBe('Test Body');
Expand Down

0 comments on commit 1478001

Please sign in to comment.