ReferenceError:运行玩笑测试时未定义ReadableStream

时间:2019-05-23 06:51:06

标签: javascript testing jestjs

运行jest客户端测试以使用我构建的ReadableStream读取本地文件时,出现错误ReferenceError: ReadableStream is not defined

使用浏览器内置的ReadableStream加载文件非常正常。

如何将ReadableStream添加到我的笑话环境中?

这是我的测试代码:

test('Select and validate log file', async () => {
  const testFile = testFileBuilder.valid();
  storeTester.dispatch(fileSelected(testFile));
  await storeTester.waitFor(FILE_VALIDATED);
  const state = storeTester.getState().file;
  expect(state.fileValidated).toBeTruthy();
});

0 个答案:

没有答案