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); + }); +});