How to use the @jupyterlab/console.CodeConsole.defaultModelFactory function in @jupyterlab/console

To help you get started, we’ve selected a few @jupyterlab/console examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jupyterlab / jupyterlab / tests / test-console / src / widget.spec.ts View on Github external
it('should be a ModelFactory', () => {
        expect(CodeConsole.defaultModelFactory).to.be.an.instanceof(
          CodeConsole.ModelFactory
        );
      });
    });
github jupyterlab / jupyterlab / tests / test-console / src / widget.spec.ts View on Github external
it('should be a ModelFactory', () => {
        expect(CodeConsole.defaultModelFactory).to.be.an.instanceof(
          CodeConsole.ModelFactory
        );
      });
    });
github jupyterlab / jupyterlab-data-explorer / tests / test-console / src / widget.spec.ts View on Github external
it('should be a ModelFactory', () => {
        expect(CodeConsole.defaultModelFactory).to.be.an.instanceof(
          CodeConsole.ModelFactory
        );
      });
    });
github jupyterlab / jupyterlab / test / src / console / widget.spec.ts View on Github external
it('should be a ModelFactory', () => {
        expect(CodeConsole.defaultModelFactory).to.be.a(CodeConsole.ModelFactory);
      });