chore(cli): fixing cli issues

This commit is contained in:
blam
2020-09-22 03:25:08 +02:00
parent 23275680fa
commit a9adf229ff
@@ -17,7 +17,7 @@ describe('ExampleFetchComponent', () => {
// setup mock response
beforeEach(() => {
server.use(rest.get('/*', (_, res, ctx) => res(ctx.status(200), ctx.delay(2000), ctx.json({}))))
server.use(rest.get('https://randomuser.me/*', (_, res, ctx) => res(ctx.status(200), ctx.delay(2000), ctx.json({}))))
})
it('should render', async () => {
const rendered = render(<ExampleFetchComponent />);