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 84e8ede commit a5aa02fCopy full SHA for a5aa02f
packages/snaps-cli/src/commands/watch/watch.test.ts
@@ -34,8 +34,6 @@ describe('watchHandler', () => {
34
expect(listen).toHaveBeenCalledWith(config.server.port);
35
expect(watch).toHaveBeenCalledWith(config, {
36
spinner: expect.any(Object),
37
- evaluate: true,
38
- spinner: expect.any(Object),
39
});
40
41
expect(log).toHaveBeenCalledWith(
packages/snaps-cli/src/commands/watch/watch.ts
@@ -45,7 +45,7 @@ const steps: Steps<WatchContext> = [
45
{
46
name: 'Building the Snap bundle.',
47
task: async ({ config, spinner }) => {
48
- await watch(config, { spinner, evaluate: config.evaluate });
+ await watch(config, { spinner });
49
},
50
51
];
0 commit comments