From caf2905e54aa22d27c1452caa8368f680ba87ccb Mon Sep 17 00:00:00 2001 From: jill64 Date: Tue, 7 Nov 2023 00:03:35 +0900 Subject: [PATCH] Add placeholder test for Ghost utils --- packages/ghost/utils/index.test.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 packages/ghost/utils/index.test.ts diff --git a/packages/ghost/utils/index.test.ts b/packages/ghost/utils/index.test.ts new file mode 100644 index 00000000..28368096 --- /dev/null +++ b/packages/ghost/utils/index.test.ts @@ -0,0 +1,5 @@ +import { test, expect } from 'vitest' + +test('placeholder', () => { + expect(1 + 2).toBe(3) +}) \ No newline at end of file