@rotorsoft/act-tck 1.22.0 → 1.24.0

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/dist/index.cjs CHANGED
@@ -118,6 +118,7 @@ var build_cache_plan = (seed, stream_count) => {
118
118
  const make_entry = () => {
119
119
  const v = Math.floor(rng() * 1e3);
120
120
  return {
121
+ stream: `e-${v}`,
121
122
  state: { count: v, label: `k${v % 7}` },
122
123
  version: v,
123
124
  event_id: v,
@@ -188,7 +189,8 @@ var runCacheDifferentialTck = (options) => {
188
189
 
189
190
  // src/cache-tck.ts
190
191
  var import_vitest2 = require("vitest");
191
- var entry = (event_id, state = {}) => ({
192
+ var entry = (event_id, state = {}, stream = `s-${event_id}`) => ({
193
+ stream,
192
194
  state,
193
195
  version: event_id,
194
196
  event_id,