@strav/testing 0.4.6 → 0.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strav/testing",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "type": "module",
5
5
  "description": "Testing utilities for the Strav framework",
6
6
  "license": "MIT",
@@ -15,10 +15,10 @@
15
15
  "CHANGELOG.md"
16
16
  ],
17
17
  "peerDependencies": {
18
- "@strav/kernel": "0.4.6",
19
- "@strav/http": "0.4.6",
20
- "@strav/view": "0.4.6",
21
- "@strav/database": "0.4.6"
18
+ "@strav/kernel": "0.4.7",
19
+ "@strav/http": "0.4.7",
20
+ "@strav/view": "0.4.7",
21
+ "@strav/database": "0.4.7"
22
22
  },
23
23
  "scripts": {
24
24
  "test": "bun test tests/",
@@ -85,6 +85,7 @@ export class TestDatabaseManager {
85
85
  }
86
86
 
87
87
  this.database = app.resolve(Database)
88
+ await this.database.init()
88
89
 
89
90
  // Configure BaseModel with the shared database
90
91
  new BaseModel(this.database)