mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-04-18 23:58:13 +01:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
jest.mock("./NotebookComponent/store");
|
|
jest.mock("@nteract/core");
|
|
import { NotebookClientV2 } from "./NotebookClientV2";
|
|
import configureStore from "./NotebookComponent/store";
|
|
import { defineConfigOption } from "@nteract/mythic-configuration";
|
|
|
|
describe("auto start kernel", () => {
|
|
it("configure autoStartKernelOnNotebookOpen properly depending whether notebook is/is not read-only", async () => {
|
|
(configureStore as jest.Mock).mockReturnValue({
|
|
dispatch: () => {
|
|
/* noop */
|
|
},
|
|
});
|
|
|
|
defineConfigOption({
|
|
label: "editorType",
|
|
key: "editorType",
|
|
defaultValue: "foo",
|
|
});
|
|
|
|
defineConfigOption({
|
|
label: "autoSaveInterval",
|
|
key: "autoSaveInterval",
|
|
defaultValue: 1234,
|
|
});
|
|
|
|
[true, false].forEach((isReadOnly) => {
|
|
new NotebookClientV2({
|
|
connectionInfo: {
|
|
authToken: "autToken",
|
|
notebookServerEndpoint: "notebookServerEndpoint",
|
|
},
|
|
databaseAccountName: undefined,
|
|
defaultExperience: undefined,
|
|
isReadOnly,
|
|
contentProvider: undefined,
|
|
});
|
|
|
|
expect(configureStore).toHaveBeenCalledWith(
|
|
expect.anything(), // initial state
|
|
undefined, // content provider
|
|
expect.anything(), // onTraceFailure
|
|
expect.anything(), // customMiddlewares
|
|
!isReadOnly
|
|
);
|
|
});
|
|
});
|
|
});
|