Skip to content

Commit

Permalink
update test assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
chaance committed Aug 3, 2022
1 parent 04a0cf3 commit b44e5c3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integration/form-test.ts
Expand Up @@ -396,7 +396,7 @@ test.describe("Forms", () => {
expect(el.attr("action")).toMatch("/inbox");
});

test("no action resolves to action w/ search params", async ({
test("no action resolves to URL including search params", async ({
page,
}) => {
let app = new PlaywrightFixture(appFixture, page);
Expand Down Expand Up @@ -466,7 +466,7 @@ test.describe("Forms", () => {
expect(el.attr("action")).toMatch("/blog/abc");
});

test("no action resolves to action w/ search params", async ({
test("no action resolves to URL including search params", async ({
page,
}) => {
let app = new PlaywrightFixture(appFixture, page);
Expand Down Expand Up @@ -536,7 +536,7 @@ test.describe("Forms", () => {
expect(el.attr("action")).toMatch("/blog");
});

test("no action resolves to action w/ search params", async ({
test("no action resolves to URL including search params", async ({
page,
}) => {
let app = new PlaywrightFixture(appFixture, page);
Expand Down Expand Up @@ -606,7 +606,7 @@ test.describe("Forms", () => {
expect(el.attr("action")).toMatch("/blog");
});

test("no action resolves to action w/ search params", async ({
test("no action resolves to URL including search params", async ({
page,
}) => {
let app = new PlaywrightFixture(appFixture, page);
Expand Down Expand Up @@ -676,7 +676,7 @@ test.describe("Forms", () => {
expect(el.attr("action")).toMatch("/projects");
});

test("no action resolves to action w/ search params", async ({
test("no action resolves to URL including search params", async ({
page,
}) => {
let app = new PlaywrightFixture(appFixture, page);
Expand Down

0 comments on commit b44e5c3

Please sign in to comment.