From 4d43f149bb3e4de2c07e004f68bf60aa5c6c985c Mon Sep 17 00:00:00 2001 From: Jan Macku Date: Mon, 20 Nov 2023 09:24:23 +0100 Subject: [PATCH] test: add action smoke test --- test/action.test.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/action.test.ts diff --git a/test/action.test.ts b/test/action.test.ts new file mode 100644 index 0000000..79b529c --- /dev/null +++ b/test/action.test.ts @@ -0,0 +1,9 @@ +import { describe, expect, test } from 'vitest'; + +import action from '../src/action'; + +describe('Integration test', () => { + test('Smoke', async () => { + expect(action).toBeInstanceOf(Function); + }); +});