yprovider.spec.ts 353 B

123456789101112
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. import { WebSocketProviderWithLocks } from '../src';
  4. describe('@jupyterlab/docprovider', () => {
  5. describe('docprovider', () => {
  6. it('should have a type', () => {
  7. expect(WebSocketProviderWithLocks).not.toBeUndefined();
  8. });
  9. });
  10. });