|
@@ -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()', () => {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+});
|