From d9a9e1819a0b1fce91f651da283d8741bdcc2a5d Mon Sep 17 00:00:00 2001 From: "Carina.Akaia.io" Date: Sat, 24 Aug 2024 01:27:43 +0400 Subject: [PATCH] Fix typo in the client test description --- test/index.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.test.tsx b/test/index.test.tsx index a5f8a55..758d05b 100644 --- a/test/index.test.tsx +++ b/test/index.test.tsx @@ -4,7 +4,7 @@ import { describe, expect, it } from 'vitest' import { Hello, createHello } from '../src' describe('environment', () => { - it('runs on server', () => { + it('runs on client', () => { expect(typeof window).toBe('object') expect(isServer).toBe(false) })