Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
KingSora committed Jul 31, 2024
1 parent cadff26 commit c38309e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import { playwrightRollup, expectSuccess } from '@~local/playwright-tooling';
import { expect, test } from '@playwright/test';
import { timeout } from '@~local/browser-testing';
import type { Page } from '@playwright/test';

playwrightRollup();

test.describe('scrollbarsSetup.scrollbars', () => {
const timeout = (ms: number) =>
new Promise((resolve) => {
setTimeout(resolve, ms);
});

const clickScrollbar = async (page: Page, target: string) => {
const options = {
force: true,
Expand Down

0 comments on commit c38309e

Please sign in to comment.