瀏覽代碼

wip toolbar tests

Steven Silvester 9 年之前
父節點
當前提交
76627604c6
共有 1 個文件被更改,包括 49 次插入0 次删除
  1. 49 0
      test/src/notebook/notebook/toolbar.spec.ts

+ 49 - 0
test/src/notebook/notebook/toolbar.spec.ts

@@ -0,0 +1,49 @@
+// Copyright (c) Jupyter Development Team.
+// Distributed under the terms of the Modified BSD License.
+
+import expect = require('expect.js');
+
+import {
+  NotebookToolbar, ToolbarButton
+} from '../../../../lib/notebook/notebook/toolbar';
+
+
+describe('notebook/notebook/toolbar', () => {
+
+  describe('NotebookToolbar', () => {
+
+    describe('#constructor()', () => {
+
+    });
+
+    describe('#add()', () => {
+
+    });
+
+    describe('#list()', () => {
+
+    });
+
+  });
+
+  describe('ToolbarButton', () => {
+
+    describe('#createNode()', () => {
+
+    });
+
+    describe('#constructor()', () => {
+
+    });
+
+    describe('#dispose()', () => {
+
+    });
+
+    describe('#handleEvent()', () => {
+
+    });
+
+  });
+
+});