diff --git a/src/scenes/welcome/new-graph/new-graph.component.spec.js b/src/scenes/welcome/new-graph/new-graph.component.spec.js index bc2fcff..a219523 100644 --- a/src/scenes/welcome/new-graph/new-graph.component.spec.js +++ b/src/scenes/welcome/new-graph/new-graph.component.spec.js @@ -64,16 +64,4 @@ describe(NewGraph.name, () => { .onSubmit(submitEvent); expect(saveNewGraph).toHaveBeenCalledWith(input); }); - - it('sets the dialog `open` prop to `true` if isOpen is true', () => { - const component = shallow(); - const dialog = component.find(Dialog).getElement(); - expect(dialog.props.open).toBeTruthy(); - }); - - it('sets the dialog `open` prop to `false` if isOpen is false', () => { - const component = shallow(); - const dialog = component.find(Dialog).getElement(); - expect(dialog.props.open).toBeFalsy(); - }); });