Skip to content

Commit

Permalink
Work for #6966 - warnings&erros related to ResizeObserver - fixed f-t…
Browse files Browse the repository at this point in the history
…ests
  • Loading branch information
tsv2013 committed Sep 18, 2023
1 parent 60246c0 commit 1e6ef38
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testCafe/components/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ function getActionByText(text: string) {
}

frameworks.forEach(async framework => {
fixture`${framework} ${title}`.page`${url}${framework}`.clientScripts({ content: "(function(){})()" }).beforeEach(async t => {
});

test("check custom markup in list behavior", async t => {
await registerCustomToolboxComponent(framework);
await initSurvey(framework, json, { onGetQuestionTitleActions: addTitleAction });
Expand Down Expand Up @@ -109,6 +112,9 @@ frameworks.forEach(async framework => {
["knockout", "react"].forEach(async framework => {
if (frameworks.indexOf(framework) === -1) return;

fixture`${framework} ${title}`.page`${url}${framework}`.clientScripts({ content: "(function(){})()" }).beforeEach(async t => {
});

test("check list filter", async t => {

await initSurvey(framework, {
Expand Down

0 comments on commit 1e6ef38

Please sign in to comment.