Bladeren bron

Initial setting registry test commit.

Afshin Darian 7 jaren geleden
bovenliggende
commit
e48bae1961
1 gewijzigde bestanden met toevoegingen van 27 en 0 verwijderingen
  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);
+      });
+
+    });
+
+  });
+
+});