Explorar o código

Remove unncessary test

Steven Silvester %!s(int64=8) %!d(string=hai) anos
pai
achega
2c030e680c
Modificáronse 1 ficheiros con 0 adicións e 9 borrados
  1. 0 9
      test/src/notebook/cells/editor.spec.ts

+ 0 - 9
test/src/notebook/cells/editor.spec.ts

@@ -205,15 +205,6 @@ describe('notebook/cells/editor', () => {
         expect(widget.model).to.be(model);
       });
 
-      it('should empty the code mirror if set to null', () => {
-        let widget = createCellEditor();
-        widget.model = new CellModel();
-        widget.model.source = 'foo';
-        expect(widget.editor.model.value).to.be('foo');
-        widget.model = null;
-        expect(widget.editor.model.value).to.be.empty();
-      });
-
     });
 
     describe('#dispose()', () => {