Skip to content
Open
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
4 changes: 2 additions & 2 deletions packages/test/src/test-async-completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { randomUUID } from 'crypto';
import type { TestFn, ExecutionContext } from 'ava';
import anyTest from 'ava';
import type { Observable } from 'rxjs';
import { Subject, firstValueFrom } from 'rxjs';
import { ReplaySubject, firstValueFrom } from 'rxjs';
import { filter } from 'rxjs/operators';
import type { ConnectionLike } from '@temporalio/client';
import {
Expand Down Expand Up @@ -239,7 +239,7 @@ test('AsyncCompletionClient heartbeat with task token uses explicit activity con

if (RUN_INTEGRATION_TESTS) {
test.before(async (t) => {
const infoSubject = new Subject<Info>();
const infoSubject = new ReplaySubject<Info>();

const worker = await Worker.create({
workflowsPath: require.resolve('./workflows'),
Expand Down
Loading