From 21996d970bed5a90c344ce5b8c1078ae47495aa4 Mon Sep 17 00:00:00 2001 From: Vladimir Sheremet Date: Tue, 15 Oct 2024 14:39:12 +0200 Subject: [PATCH] test: no process --- test/browser/test/another.test.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/browser/test/another.test.ts b/test/browser/test/another.test.ts index 1e66b9ab7ea2..31e0886d7897 100644 --- a/test/browser/test/another.test.ts +++ b/test/browser/test/another.test.ts @@ -3,3 +3,7 @@ import { expect, it } from 'vitest' it('basic 3', async () => { expect(globalThis.window).toBeDefined() }) + +it('no process', () => { + expect(globalThis.process).toBeUndefined() +})