فهرست منبع

Remove unncessary test

Steven Silvester 8 سال پیش
والد
کامیت
2c030e680c
1فایلهای تغییر یافته به همراه0 افزوده شده و 9 حذف شده
  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()', () => {