From 7ca76da820170a8891ecdc8eb07a1bad5fde4095 Mon Sep 17 00:00:00 2001 From: Alexander Alemayhu Date: Mon, 25 Sep 2023 19:19:47 +0200 Subject: [PATCH] fix: add test Should resolve issue on github action. --- src/default-templates.test.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/default-templates.test.ts diff --git a/src/default-templates.test.ts b/src/default-templates.test.ts new file mode 100644 index 0000000..9db6191 --- /dev/null +++ b/src/default-templates.test.ts @@ -0,0 +1,8 @@ +// eslint-disable-next-line import/no-extraneous-dependencies +import { test, expect } from 'vitest'; + +import TEMPLATE_DIR from './default-templates'; + +test('not empty template directory', () => { + expect(TEMPLATE_DIR).not.toEqual(''); +});