Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/npm_and_yarn/cross-spawn-7.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
janechu authored Dec 4, 2024
2 parents a0ba4af + a3c98e1 commit 62b7aff
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ We hope you're excited by the possibilities that FAST presents. But, you may be
* "I want to build my own components."
* [Jump to the fast-element docs.](https://fast.design/docs/fast-element/getting-started)
* "I need to integrate FAST with another framework or build system."
* [Jump to the integration docs.](https://fast.design/docs/integrations/introduction)
* [Jump to the integration docs.](https://fast.design/docs/integrations)
* "I want to look at a quick reference."
* [Jump to the Cheat Sheet](https://fast.design/docs/resources/cheat-sheet)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Attempt to address flaky test by increasing timeout",
"packageName": "@microsoft/fast-ssr",
"email": "[email protected]",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { expect, test } from "@playwright/test";

test("Check that the first element has styles assigned", async ({ page }) => {
test.slow();
await page.goto("/fast-style");

const cards = page.locator("fast-card");
Expand All @@ -17,6 +18,7 @@ test("Check that the first element has styles assigned", async ({ page }) => {
test("Check that the nested element in the first element has styles assigned", async ({
page,
}) => {
test.slow();
await page.goto("/fast-style");

const cards = page.locator("fast-card");
Expand All @@ -34,6 +36,7 @@ test("Check that the nested element in the first element has styles assigned", a
expect(styles[0]).toEqual("rgb(43, 43, 43)");
});
test("Check that all elements have styles assigned", async ({ page }) => {
test.slow();
await page.goto("/fast-style");

const cards = page.locator("fast-card");
Expand All @@ -52,6 +55,7 @@ test("Check that all elements have styles assigned", async ({ page }) => {
});
});
test("Check that all nested elements have styles assigned", async ({ page }) => {
test.slow();
await page.goto("/fast-style");

const cards = page.locator("fast-card");
Expand Down

0 comments on commit 62b7aff

Please sign in to comment.