Skip to content

Commit f1c0488

Browse files
committed
Remove focused tests
1 parent 5dd15ab commit f1c0488

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

integration/resource-routes-test.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ test.describe("loader in an app", async () => {
236236
expect(await res.text()).toEqual("Partial");
237237
});
238238

239-
test.only("should handle data() returned from resource routes", async ({
239+
test("should handle data() returned from resource routes", async ({
240240
page,
241241
}) => {
242242
let app = new PlaywrightFixture(appFixture, page);
@@ -246,17 +246,15 @@ test.describe("loader in an app", async () => {
246246
expect(await res.text()).toEqual("Partial");
247247
});
248248

249-
test.only("should handle data() thrown from resource routes", async ({
250-
page,
251-
}) => {
249+
test("should handle data() thrown from resource routes", async ({ page }) => {
252250
let app = new PlaywrightFixture(appFixture, page);
253251
let res = await app.goto("/throw-data");
254252
expect(res.status()).toBe(207);
255253
expect(res.headers()["x-foo"]).toBe("Bar");
256254
expect(await res.text()).toEqual("Partial");
257255
});
258256

259-
test.only("should handle data() returned from resource routes through middleware", async ({
257+
test("should handle data() returned from resource routes through middleware", async ({
260258
page,
261259
}) => {
262260
let app = new PlaywrightFixture(appFixture, page);
@@ -266,7 +264,7 @@ test.describe("loader in an app", async () => {
266264
expect(await res.text()).toEqual("Partial");
267265
});
268266

269-
test.only("should handle data() thrown from resource routes through middleware", async ({
267+
test("should handle data() thrown from resource routes through middleware", async ({
270268
page,
271269
}) => {
272270
let app = new PlaywrightFixture(appFixture, page);

0 commit comments

Comments
 (0)