chore: reset tmeplate for now

Signed-off-by: benjdlambert <ben@blam.sh>

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-07-18 18:29:37 +02:00
parent d7a3d04e82
commit 0d81483525
22 changed files with 1 additions and 403 deletions
+1 -3
View File
@@ -57,7 +57,7 @@ describe('command entrypoint', () => {
jest.resetAllMocks();
});
test('should call expected tasks with no `--path` option', async () => {
it('should call expected tasks with no `--path` option', async () => {
const cmd = {} as unknown as Command;
await createApp(cmd);
expect(checkAppExistsMock).toHaveBeenCalled();
@@ -74,7 +74,6 @@ describe('command entrypoint', () => {
expect(templatingMock.mock.lastCall?.[1]).toContain(
path.join(tmpdir(), 'MyApp'),
);
expect(templatingMock.mock.lastCall?.[3]).toEqual(['packages/app-next/']);
expect(moveAppMock).toHaveBeenCalled();
expect(buildAppMock).toHaveBeenCalled();
});
@@ -94,7 +93,6 @@ describe('command entrypoint', () => {
),
);
expect(templatingMock.mock.lastCall?.[1]).toEqual('myDirectory');
expect(templatingMock.mock.lastCall?.[3]).toEqual(['packages/app-next/']);
expect(buildAppMock).toHaveBeenCalled();
});