We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7a1d91 commit bcfb899Copy full SHA for bcfb899
1 file changed
test/e2e-azuremanaged/entity.spec.ts
@@ -453,7 +453,7 @@ describe("Durable Entities E2E Tests (DTS)", () => {
453
expect(counts).toEqual([10, 20, 30]);
454
}, 60000);
455
456
- it("should query entities page by page using byPage()", async () => {
+ it("should query entities page by page using asPages()", async () => {
457
// Arrange
458
const prefix = `page-query-${Date.now()}`;
459
const entityIds = [];
@@ -480,7 +480,7 @@ describe("Durable Entities E2E Tests (DTS)", () => {
480
instanceIdStartsWith: `@CounterEntity@${prefix}`,
481
includeState: true,
482
pageSize: 2, // Small page size to force multiple pages
483
- }).byPage()) {
+ }).asPages()) {
484
pageCount++;
485
for (const metadata of page.values) {
486
allResults.push({
0 commit comments