Format tests and update prettier command

This commit is contained in:
ogabrielluiz 2024-06-10 15:23:52 -03:00
commit e6fefa680d
27 changed files with 168 additions and 213 deletions

View file

@ -23,7 +23,7 @@ test("python_api_generation", async ({ page, context }) => {
await page.getByRole("tab", { name: "Python API" }).click();
await page.getByRole("button", { name: "Copy Code" }).click();
const handle = await page.evaluateHandle(() =>
navigator.clipboard.readText(),
navigator.clipboard.readText()
);
const clipboardContent = await handle.jsonValue();
expect(clipboardContent.length).toBeGreaterThan(0);