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 57b6f9f commit 8ae0cdeCopy full SHA for 8ae0cde
src/components/audio-in/client.spec.ts
@@ -29,6 +29,9 @@ const testProperties = new GetPropertiesResponse({
29
30
describe('AudioInClient tests', () => {
31
beforeEach(() => {
32
+ testAudioStream =
33
+ createWritableIterable<PartialMessage<GetAudioResponse>>();
34
+
35
const mockTransport = createRouterTransport(({ service }) => {
36
service(AudioInService, {
37
getAudio: () => {
@@ -49,8 +52,6 @@ describe('AudioInClient tests', () => {
49
52
50
53
afterEach(() => {
51
54
vi.clearAllMocks();
- testAudioStream =
- createWritableIterable<PartialMessage<GetAudioResponse>>();
55
});
56
57
describe('getAudio tests', () => {
0 commit comments