Merge pull request #65 from abhi1693/fix/pr48-test-types

Fix vitest matcher typings in frontend tests
This commit is contained in:
Abhimanyu Saharan
2026-02-08 23:11:58 +05:30
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -1,4 +1,6 @@
import { render, screen } from "@testing-library/react"; import { render, screen } from "@testing-library/react";
import { describe, expect, it } from "vitest";
import { ActivityFeed } from "./ActivityFeed"; import { ActivityFeed } from "./ActivityFeed";

View File

@@ -1,4 +1,6 @@
import { createExponentialBackoff } from "./backoff"; import { createExponentialBackoff } from "./backoff";
import { describe, expect, it, vi } from "vitest";
describe("createExponentialBackoff", () => { describe("createExponentialBackoff", () => {
it("uses default options", () => { it("uses default options", () => {