JestでEventSourceを実行可能にする

JestでEventSourceを実行可能にする

Category
Author
Description
JestでSSEのネイティブEventSourceをテストするときのEventSourceMockを作成しました。
Published
July 13, 2020
Last Updated
Last Updated July 13, 2020
Writings
この記事は約2分で読めます

はじめに

JestでSSEのネイティブEventSourceをテストするときのEventSourceMockを作成しました。
結構ニッチな内容だけどメモレベルで共有しておく。

内容

ネイティブのEventSourceはNode内には存在しないので自分で登録する必要があります。
Mockを定義してそれっぽくしましょう。
export class EventSourceMock { constructor(url: string, eventSourceInitDict?: Record<string, string>) { this.url = url; this.onmessage = null; } url?: string; onmessage: ((this: EventSource, ev: MessageEvent) => any) | null; } (global as any).EventSource = EventSourceMock;

参考URL