Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -112,12 +112,10 @@ async function makeProtocol() {
const { driver } = makeMemoryDriver();
engine.registerDriver(driver, true);
await engine.init();
engine.registry.registerObject(sysMetadataObject as any);
engine.registry.registerObject(sysMetadataObject as any, 'test-package');
return new ObjectStackProtocolImplementation(engine);
}

const LOG = (...a: any[]) => appendFileSync(OUT, a.join(' ') + '\n');

const viewBody = (label: string) => ({ name: 'cases', type: 'grid', label, columns: ['id'] });

/** Keys the producer emitted that the schema refused to carry through. */
Expand Down
Loading