Skip to content

Commit cf79a2e

Browse files
committed
Add prefix to scope tests
1 parent 6c40165 commit cf79a2e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test-common.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ export function runTests(
107107
.write(crypto.randomUUID());
108108

109109
const entries = [];
110-
for await (const e of client.listIterating({ internalPageSize: 1 })) {
110+
for await (const e of client.listIterating({
111+
prefix: `${runId}/${testId}`,
112+
internalPageSize: 1,
113+
})) {
111114
entries.push(e);
112115
}
113116

0 commit comments

Comments
 (0)