We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e798e0c commit 1a36bb2Copy full SHA for 1a36bb2
test/e2e/sdk/actorCharge/test.mjs
@@ -58,9 +58,9 @@ test('charge limit', async () => {
58
assert.deepEqual(run.chargedEventCounts, { foobar: 2 });
59
});
60
61
-test('default charge limit 0', async () => {
+test('default options start cost-unlimited runs', async () => {
62
const run = await runActor({}, {});
63
64
assert.strictEqual(run.status, 'SUCCEEDED');
65
- assert.deepEqual(run.chargedEventCounts, { foobar: 0 });
+ assert.deepEqual(run.chargedEventCounts, { foobar: 4 });
66
0 commit comments