Browse Source

Initial setting registry test commit.

Afshin Darian 7 năm trước cách đây
mục cha
commit
e48bae1961
1 tập tin đã thay đổi với 27 bổ sung0 xóa
  1. 27 0
      test/src/coreutils/settingregistry.spec.ts

+ 27 - 0
test/src/coreutils/settingregistry.spec.ts

@@ -0,0 +1,27 @@
+// Copyright (c) Jupyter Development Team.
+// Distributed under the terms of the Modified BSD License.
+
+import {
+  expect
+} from 'chai';
+
+import {
+  SettingRegistry
+} from '@jupyterlab/coreutils';
+
+
+describe('@jupyterlab/coreutils', () => {
+
+  describe('SettingRegistry', () => {
+
+    describe('#constructor()', () => {
+
+      it('should create a new setting registry', () => {
+        expect(new SettingRegistry()).to.be.an.instanceof(SettingRegistry);
+      });
+
+    });
+
+  });
+
+});