From 0493c707ffe61aa75af7839ce1c4de2e287275fa Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 25 Dec 2023 12:44:37 -0600 Subject: [PATCH] chore(test): fix next frame test --- src/spec/util.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spec/util.spec.ts b/src/spec/util.spec.ts index 7b14f59..c28c3bc 100644 --- a/src/spec/util.spec.ts +++ b/src/spec/util.spec.ts @@ -4,7 +4,7 @@ import { describe, expect, test } from 'vitest'; describe('util', () => { describe('nextFrame', () => { test('should resolve', async () => { - expect(nextFrame()).resolves; + await expect(nextFrame()).resolves.toEqual(undefined); }); }); });