diff --git a/technical-fundamentals/package.json b/technical-fundamentals/package.json index bd1ab3da..6a8d114f 100644 --- a/technical-fundamentals/package.json +++ b/technical-fundamentals/package.json @@ -4,13 +4,13 @@ "description": "Crackin the coding interview problems", "main": "index.js", "scripts": { - "test": "vitest ./**/problems/__tests__/*", - "test-coding": "vitest ./coding/__tests__/*", - "strings": "vitest ./**/problems/__tests__/strings/* --reporter=default --reporter=./silverReporter.ts", - "lists": "vitest ./**/problems/__tests__/lists/* --reporter=default --reporter=./silverReporter.ts", - "stacks": "vitest ./**/problems/__tests__/stacks/* --reporter=default --reporter=./silverReporter.ts", - "trees": "vitest ./**/problems/__tests__/trees/* --reporter=default --reporter=./silverReporter.ts", - "recursion": "vitest ./**/problems/__tests__/recursion/* --reporter=default --reporter=./silverReporter.ts" + "test": "vitest ./coding/problems/__tests__/", + "test-coding": "vitest ./coding/__tests__/", + "strings": "vitest ./coding/problems/__tests__/strings --reporter=default --reporter=./silverReporter.ts", + "lists": "vitest ./coding/problems/__tests__/lists --reporter=default --reporter=./silverReporter.ts", + "stacks": "vitest ./coding/problems/__tests__/stacks --reporter=default --reporter=./silverReporter.ts", + "trees": "vitest ./coding/problems/__tests__/trees --reporter=default --reporter=./silverReporter.ts", + "recursion": "vitest ./coding/problems/__tests__/recursion --reporter=default --reporter=./silverReporter.ts" }, "keywords": [ "cracking",