浏览代码

Delete debug logging in tests

Jason Grout 6 年之前
父节点
当前提交
2dc95446a2
共有 2 个文件被更改,包括 0 次插入2 次删除
  1. 0 1
      tests/test-cells/src/widget.spec.ts
  2. 0 1
      tests/test-codeeditor/src/editor.spec.ts

+ 0 - 1
tests/test-cells/src/widget.spec.ts

@@ -448,7 +448,6 @@ describe('cells/widget', () => {
         try {
           await CodeCell.execute(widget, session);
         } catch (error) {
-          console.log('IT BREAKS HERE');
           throw error;
         }
       });

+ 0 - 1
tests/test-codeeditor/src/editor.spec.ts

@@ -59,7 +59,6 @@ describe('CodeEditor.Model', () => {
     it('should be the observable value of the model', () => {
       let called = false;
       model.value.changed.connect((sender, args) => {
-        console.log('hi', args.value);
         expect(sender).to.equal(model.value);
         expect(args.type).to.equal('set');
         expect(args.value).to.equal('foo');