Skip to content

Commit

Permalink
version 1.0.2-beta published
Browse files Browse the repository at this point in the history
  • Loading branch information
zhamdi committed Dec 12, 2023
1 parent 6b5159a commit 47cf27b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@user-credits/stripe-mongoose",
"author": "Zied Hamdi",
"type": "module",
"version": "1.0.1-beta",
"version": "1.0.2-beta",
"license": "MIT",
"keywords": [
"user-credits",
Expand Down Expand Up @@ -67,7 +67,7 @@
"node": ">=18"
},
"dependencies": {
"@user-credits/core": "^1.0.0-beta",
"@user-credits/core": "^1.0.1-beta",
"awilix": "^9.0.0",
"bson": "^6.1.0",
"dotenv": "^16.3.1",
Expand Down
5 changes: 1 addition & 4 deletions test/db/dao/IOfferDao.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,7 @@ describe("OfferDao specific methods", () => {
// Write your Jest assertions to check if the offers were loaded correctly
expect(Array.isArray(offers)).toBe(true);
expect(offerNames(offers)).toEqual(
expect.arrayContaining([
"1-article-month",
"2-articles-month",
]),
expect.arrayContaining(["1-article-month", "2-articles-month"]),
);
expect(offers.length).toBe(2);
});
Expand Down

0 comments on commit 47cf27b

Please sign in to comment.