1

Trying to import fetch mock but when karma starts I get:

You need to include some adapter that implements karma.start method!

I've tried all of these with no success:

import {fetchMock} from 'fetch-mock'; import fetchMock from 'fetch-mock'; import fetchMock from 'fetch-mock';

I have installed the typings from @types/fetch-mock

Scott Walter
  • 9,426
  • 4
  • 18
  • 23

1 Answers1

0

Try:

import * as fetchMock from 'fetch-mock';
rgwozdz
  • 1,093
  • 2
  • 13
  • 26
  • 2
    This would be a better answer if you explained how the code you provided answers the question. – pppery Jun 19 '20 at 00:55