From 2f40221b7eb9ffd0f87d36b137e0252ce2e1f891 Mon Sep 17 00:00:00 2001 From: Aidan Bleser Date: Mon, 14 Oct 2024 05:58:20 -0500 Subject: [PATCH] Update init.spec.ts --- packages/cli/test/commands/init.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/test/commands/init.spec.ts b/packages/cli/test/commands/init.spec.ts index f7e88e5b7..52ce57fb9 100644 --- a/packages/cli/test/commands/init.spec.ts +++ b/packages/cli/test/commands/init.spec.ts @@ -41,7 +41,7 @@ it("init (config-full)", async () => { expect(mockMkdir).toHaveBeenNthCalledWith(1, expect.stringContaining("src"), expect.anything()); expect(mockMkdir).toHaveBeenNthCalledWith( 2, - expect.stringContaining("src\\lib\\components"), + expect.stringContaining("src/lib/components"), expect.anything() );