@powerhousedao/vetra 6.0.0-dev.13 → 6.0.0-dev.14
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.
|
@@ -202,7 +202,7 @@ describe("CodegenProcessorLegacy E2E Tests", () => {
|
|
|
202
202
|
const strand = {
|
|
203
203
|
documentId: "test-doc-1",
|
|
204
204
|
documentType: "powerhouse/document-model",
|
|
205
|
-
state: validState,
|
|
205
|
+
state: { global: validState },
|
|
206
206
|
};
|
|
207
207
|
await processor.onStrands([strand]);
|
|
208
208
|
await vi.runAllTimersAsync();
|
|
@@ -236,7 +236,7 @@ describe("CodegenProcessorLegacy E2E Tests", () => {
|
|
|
236
236
|
const strand = {
|
|
237
237
|
documentId: "test-doc-1",
|
|
238
238
|
documentType: "powerhouse/document-model",
|
|
239
|
-
state: invalidState,
|
|
239
|
+
state: { global: invalidState },
|
|
240
240
|
};
|
|
241
241
|
await processor.onStrands([strand]);
|
|
242
242
|
await vi.runAllTimersAsync();
|
|
@@ -261,7 +261,7 @@ describe("CodegenProcessorLegacy E2E Tests", () => {
|
|
|
261
261
|
const strand = {
|
|
262
262
|
documentId: "test-doc-1",
|
|
263
263
|
documentType: "powerhouse/document-model",
|
|
264
|
-
state: validState,
|
|
264
|
+
state: { global: validState },
|
|
265
265
|
};
|
|
266
266
|
await processor.onStrands([strand]);
|
|
267
267
|
await vi.runAllTimersAsync();
|