Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/realm-server/tests/indexing-event-sink-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ function makeRecordingAdapter(): {
async getColumnNames() {
return [];
},
async notify() {},
},
};
}
Expand Down Expand Up @@ -374,6 +375,7 @@ module(basename(__filename), function () {
async getColumnNames() {
return [];
},
async notify() {},
};
let sink = new IndexingEventSink({ flushIntervalMs: 10 });
sink.setAdapter(slowAdapter);
Expand Down
Loading