Selaa lähdekoodia

wip toolbar tests

Steven Silvester 9 vuotta sitten
vanhempi
commit
76627604c6
1 muutettua tiedostoa jossa 49 lisäystä ja 0 poistoa
  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()', () => {
+
+    });
+
+  });
+
+});