Skip to content

Commit

Permalink
test: add action smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed Nov 20, 2023
1 parent 8acb7ea commit 4d43f14
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/action.test.ts
Original file line number Diff line number Diff line change
@@ -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);
});
});

0 comments on commit 4d43f14

Please sign in to comment.