Skip to content

Commit 127dd03

Browse files
committed
fix: tests
1 parent f7c03ad commit 127dd03

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ export default tseslint.config(
4646
},
4747
},
4848
{
49-
ignores: ["**/dist/**", "**/node_modules/**", "**/*.config.*"],
49+
ignores: ["**/dist/**", "**/node_modules/**", "**/*.config.*", "**/.svelte-kit/**"],
5050
}
5151
);

packages/next/tests/provider.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Component, StrictMode, useState, useCallback } from "react";
22
import type { ReactNode, ErrorInfo } from "react";
33
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
4-
import { render, screen, act, waitFor } from "@testing-library/react";
4+
import { render, screen, act } from "@testing-library/react";
55
import { ReplaneNextProvider } from "../src/provider";
66
import { useReplane, useConfig } from "@replanejs/react";
77
import type { ReplaneClient, ReplaneSnapshot } from "@replanejs/sdk";

packages/sdk/tests/evaluation.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {
33
evaluateOverrides,
44
evaluateCondition,
55
castToContextType,
6-
type EvaluationResult,
76
} from "../src/evaluation";
87
import type { RenderedCondition, RenderedOverride } from "../src/types";
98
import type { ReplaneLogger } from "../src/client-types";

0 commit comments

Comments
 (0)