Browse Source

fix(playwright): remove timeout

pull/5903/head
Wing-Kam Wong 1 year ago
parent
commit
9f1737c512
  1. 33
      tests/playwright/pages/Base.ts

33
tests/playwright/pages/Base.ts

@ -28,27 +28,22 @@ export default abstract class BasePage {
httpMethodsToMatch?: string[];
responseJsonMatcher?: ResponseSelector;
}) {
const waitForResponsePromise = this.rootPage.waitForResponse(
res => {
let isResJsonMatched = true;
if (responseJsonMatcher) {
try {
isResJsonMatched = responseJsonMatcher(res.json());
} catch (e) {
return false;
}
const waitForResponsePromise = this.rootPage.waitForResponse(res => {
let isResJsonMatched = true;
if (responseJsonMatcher) {
try {
isResJsonMatched = responseJsonMatcher(res.json());
} catch (e) {
return false;
}
return (
res.request().url().includes(requestUrlPathToMatch) &&
httpMethodsToMatch.includes(res.request().method()) &&
isResJsonMatched
);
},
{
timeout: 100000,
}
);
return (
res.request().url().includes(requestUrlPathToMatch) &&
httpMethodsToMatch.includes(res.request().method()) &&
isResJsonMatched
);
});
await uiAction();
await waitForResponsePromise;

Loading…
Cancel
Save