Skip to content

Commit

Permalink
Merge pull request #91 from codelitdev/issue-87
Browse files Browse the repository at this point in the history
Fixing glob pattern
  • Loading branch information
rajat1saxena authored Feb 3, 2024
2 parents 851b2a6 + a7721ea commit dc4762a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/api/__tests__/apikey/handlers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe("API key test suite", () => {
assert.strictEqual(response.error, "Name is required");
});

test("Create API succeeds if name is provided", async (t) => {
test("Create API succeeds if name is provided.", async (t) => {
const req = {
body: {
name: "Test API",
Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"build": "tsc",
"dev": "nodemon lib/index.ts",
"start": "node dist/index.js",
"test": "node --import tsx --test **/*.test.ts"
"test": "node --import tsx --test '**/*.test.ts'"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.55.0",
Expand Down

0 comments on commit dc4762a

Please sign in to comment.