2026-06-28 17:18:14 -04:00
|
|
|
// Runner: executes storage contract against each impl.
|
|
|
|
|
// TDD: contract = spec. Run against memory first. RED until memory.js built.
|
|
|
|
|
'use strict';
|
|
|
|
|
|
2026-06-29 16:02:22 -04:00
|
|
|
const { runStorageContract } = require('../storage/contract');
|
|
|
|
|
const { createMemoryStorage } = require('../storage/memory');
|
2026-06-28 17:18:14 -04:00
|
|
|
|
|
|
|
|
runStorageContract('memory', () => createMemoryStorage());
|