sonamu 0.0.16 → 0.0.17

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": "sonamu",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "Sonamu — TypeScript Fullstack API Framework",
5
5
  "keywords": [
6
6
  "typescript",
@@ -20,12 +20,10 @@ export class Template__model_test extends Template {
20
20
  return {
21
21
  ...this.getTargetAndPath(names),
22
22
  body: `
23
- import { FixtureManager } from "sonamu";
24
23
  import { describe, test, expect } from "vitest";
24
+ import { bootstrap } from '../../testing/helpers';
25
25
 
26
- beforeEach(async () => {
27
- await FixtureManager.cleanAndSeed([]);
28
- });
26
+ bootstrap([]);
29
27
  describe.skip("${smdId}ModelTest", () => {
30
28
  test("Query", async () => {
31
29
  expect(true).toBe(true);