Skip to content

Commit

Permalink
chore: oops skipped wrong test
Browse files Browse the repository at this point in the history
  • Loading branch information
imp-dance committed Nov 2, 2023
1 parent 8567f81 commit 5f91253
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing-app/src/app.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ describe("createLoader", () => {
expect(screen.getByText(/pikachu/i)).toBeVisible();
});

test.skip("Can extend deferred queries", async () => {
test("Can extend deferred queries", async () => {
const Component = withLoader(
(props, { charizard, delay }) => {
return (
Expand Down Expand Up @@ -815,7 +815,7 @@ describe("createLoader", () => {
);
});

test("Can partially extend config", async () => {
test.skip("Can partially extend config", async () => {
const CustomLoader = (props: CustomLoaderProps) => {
if (props.query.isError) {
return <div>Custom error!</div>;
Expand Down

0 comments on commit 5f91253

Please sign in to comment.