diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 07ce2d8905..b21891514d 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -103,7 +103,7 @@
{
"label": "Clean CE",
"type": "shell",
- "command": "yarn clean",
+ "command": "yarn clear",
"options": {
"cwd": "${workspaceFolder}/webapp"
}
diff --git a/common-react/@dbeaver/ui-kit/package.json b/common-react/@dbeaver/ui-kit/package.json
index c720169a94..9745119f92 100644
--- a/common-react/@dbeaver/ui-kit/package.json
+++ b/common-react/@dbeaver/ui-kit/package.json
@@ -10,7 +10,7 @@
"scripts": {
"build": "tsc -b",
"docs": "ladle serve",
- "clean": "rimraf --glob dist"
+ "clean": "rimraf --glob lib"
},
"packageManager": "yarn@4.6.0",
"devDependencies": {
diff --git a/webapp/package.json b/webapp/package.json
index 27ea406877..f16364a96a 100644
--- a/webapp/package.json
+++ b/webapp/package.json
@@ -49,7 +49,8 @@
"reflect-metadata": "^0",
"rimraf": "^6",
"typescript": "^5.7.3",
- "typescript-plugin-css-modules": "^5"
+ "typescript-plugin-css-modules": "^5",
+ "vitest": "^3"
},
"packageManager": "yarn@4.6.0"
}
diff --git a/webapp/packages/core-administration/package.json b/webapp/packages/core-administration/package.json
index b609f6db57..317df3306a 100644
--- a/webapp/packages/core-administration/package.json
+++ b/webapp/packages/core-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-administration/tsconfig.json b/webapp/packages/core-administration/tsconfig.json
index b8064ae67d..f41f41aaef 100644
--- a/webapp/packages/core-administration/tsconfig.json
+++ b/webapp/packages/core-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -53,7 +53,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-app/package.json b/webapp/packages/core-app/package.json
index 0b1aaab692..d7db7108b3 100644
--- a/webapp/packages/core-app/package.json
+++ b/webapp/packages/core-app/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-app/tsconfig.json b/webapp/packages/core-app/tsconfig.json
index eab47c6f42..dd3d13ad71 100644
--- a/webapp/packages/core-app/tsconfig.json
+++ b/webapp/packages/core-app/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -62,7 +62,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-authentication/package.json b/webapp/packages/core-authentication/package.json
index 5d81d95bc9..81670c36e9 100644
--- a/webapp/packages/core-authentication/package.json
+++ b/webapp/packages/core-authentication/package.json
@@ -10,12 +10,12 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js",
- "./*": "./dist/*"
+ ".": "./lib/index.js",
+ "./*": "./lib/*"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -39,8 +39,8 @@
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/core-sdk": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
"msw": "^2",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-authentication/src/AuthSettingsService.test.ts b/webapp/packages/core-authentication/src/AuthSettingsService.test.ts
index efd4423d8a..99f8dba020 100644
--- a/webapp/packages/core-authentication/src/AuthSettingsService.test.ts
+++ b/webapp/packages/core-authentication/src/AuthSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreClientActivityManifest } from '@cloudbeaver/core-client-activity';
// import { coreLocalizationManifest } from '@cloudbeaver/core-localization';
@@ -52,3 +52,5 @@
// expect(settings.disableAnonymousAccess).toBe(true);
// expectNoDeprecatedSettingMessage();
// });
+
+describe.skip('AuthSettingsService', () => {});
diff --git a/webapp/packages/core-authentication/src/UserInfoResource.ts b/webapp/packages/core-authentication/src/UserInfoResource.ts
index 762ee418f1..8f502ec51c 100644
--- a/webapp/packages/core-authentication/src/UserInfoResource.ts
+++ b/webapp/packages/core-authentication/src/UserInfoResource.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-authentication/tsconfig.json b/webapp/packages/core-authentication/tsconfig.json
index 141fd453ad..e8019adbc1 100644
--- a/webapp/packages/core-authentication/tsconfig.json
+++ b/webapp/packages/core-authentication/tsconfig.json
@@ -2,13 +2,12 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
],
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
diff --git a/webapp/packages/core-blocks/package.json b/webapp/packages/core-blocks/package.json
index 5e3d9aac56..bab58c7ed5 100644
--- a/webapp/packages/core-blocks/package.json
+++ b/webapp/packages/core-blocks/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -51,15 +51,14 @@
"@cloudbeaver/core-utils": "workspace:*",
"@cloudbeaver/tests-runner": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@testing-library/dom": "^10",
+ "@testing-library/jest-dom": "^6",
"@testing-library/react": "^16",
- "@types/jest": "^29",
"@types/react": "^19",
"mobx": "^6",
"react": "^19",
"react-dom": "^19",
"typescript": "^5",
- "typescript-plugin-css-modules": "^5"
+ "typescript-plugin-css-modules": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-blocks/src/Cell.test.tsx b/webapp/packages/core-blocks/src/Cell.test.tsx
index 85c3e59ade..74498c18ec 100644
--- a/webapp/packages/core-blocks/src/Cell.test.tsx
+++ b/webapp/packages/core-blocks/src/Cell.test.tsx
@@ -1,65 +1,70 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// // @ts-nocheck
-// import { afterEach, describe, expect, it } from '@jest/globals';
-// import { cleanup, waitFor } from '@testing-library/react';
-// import { createApp, renderInApp } from '@cloudbeaver/tests-runner';
+import { describe, expect, it, vi } from 'vitest';
-// import { Cell } from './Cell.js';
+import '@testing-library/jest-dom/vitest';
+import { render } from '@testing-library/react';
-// const app = createApp();
+import { Cell } from './Cell.js';
-// describe('Cell', () => {
-// afterEach(() => {
-// cleanup();
-// });
+vi.mock('./s', () => ({
+ s: (...args: any[]) => args.join(' '),
+}));
-// it('should render children correctly', async () => {
-// const { getByText } = renderInApp(Test Children | , app);
-// const text = await waitFor(() => getByText('Test Children'));
+vi.mock('./useS', () => ({
+ useS: vi.fn(),
+}));
-// expect(text).toBeInTheDocument();
-// });
+vi.mock('./Containers/Container', () => ({
+ Container: (props: any) =>
{props.children}
,
+}));
-// it('should render before element correctly', async () => {
-// const { getByText } = renderInApp(Before Element}>Test Children | , app);
+describe('Cell', () => {
+ it('should render children correctly', async () => {
+ const { getByText } = render(Test Children | );
+ const text = await vi.waitFor(() => getByText('Test Children'));
-// const beforeText = await waitFor(() => getByText('Before Element'));
-// expect(beforeText).toBeInTheDocument();
-// });
+ expect(text).toBeInTheDocument();
+ });
-// it('should render after element correctly', async () => {
-// const { getByText } = renderInApp(After Element}>Test Children | , app);
+ it('should render before element correctly', async () => {
+ const { getByText } = render(Before Element}>Test Children | );
-// const afterText = await waitFor(() => getByText('After Element'));
-// expect(afterText).toBeInTheDocument();
-// });
+ const beforeText = await vi.waitFor(() => getByText('Before Element'));
+ expect(beforeText).toBeInTheDocument();
+ });
-// it('should render after and before elements correctly', async () => {
-// const { getByText } = renderInApp(
-// Before Element} after={After Element}>
-// Test Children
-// | ,
-// app,
-// );
+ it('should render after element correctly', async () => {
+ const { getByText } = render(After Element}>Test Children | );
-// const afterText = await waitFor(() => getByText('After Element'));
-// const beforeText = await waitFor(() => getByText('Before Element'));
+ const afterText = await vi.waitFor(() => getByText('After Element'));
+ expect(afterText).toBeInTheDocument();
+ });
-// expect(beforeText).toBeInTheDocument();
-// expect(afterText).toBeInTheDocument();
-// });
+ it('should render after and before elements correctly', async () => {
+ const { getByText } = render(
+ Before Element} after={After Element}>
+ Test Children
+ | ,
+ );
-// it('should render description element correctly', async () => {
-// const { getByText } = renderInApp(Description Element}>Test Children | , app);
+ const afterText = await vi.waitFor(() => getByText('After Element'));
+ const beforeText = await vi.waitFor(() => getByText('Before Element'));
-// const description = await waitFor(() => getByText('Description Element'));
-// expect(description).toBeInTheDocument();
-// });
-// });
+ expect(beforeText).toBeInTheDocument();
+ expect(afterText).toBeInTheDocument();
+ });
+
+ it('should render description element correctly', async () => {
+ const { getByText } = render(Description Element}>Test Children | );
+
+ const description = await vi.waitFor(() => getByText('Description Element'));
+ expect(description).toBeInTheDocument();
+ });
+});
diff --git a/webapp/packages/core-blocks/src/ErrorMessage.test.tsx b/webapp/packages/core-blocks/src/ErrorMessage.test.tsx
index 753ab0d425..516df0b693 100644
--- a/webapp/packages/core-blocks/src/ErrorMessage.test.tsx
+++ b/webapp/packages/core-blocks/src/ErrorMessage.test.tsx
@@ -1,21 +1,38 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
-// import { screen, waitFor } from '@testing-library/react';
+import { expect, describe, it, vi } from 'vitest';
-// import { coreLocalizationManifest } from '@cloudbeaver/core-localization';
-// import { createApp, renderInApp } from '@cloudbeaver/tests-runner';
+import { ErrorMessage } from './ErrorMessage.js';
+import { render } from '@testing-library/react';
-// import { ErrorMessage } from './ErrorMessage.js';
+vi.mock('./s', () => ({
+ s: (...args: any[]) => args.join(' '),
+}));
-// const app = createApp(coreLocalizationManifest);
+vi.mock('./useS', () => ({
+ useS: vi.fn(),
+}));
-// test('icons.svg#name', async () => {
-// renderInApp(, app);
-// await waitFor(() => expect(screen.getByText('error')).not.toBeNull());
-// });
+vi.mock('./localization/useTranslate', () => ({
+ useTranslate: () => (key: string) => key,
+}));
+
+vi.mock('./Button', () => ({
+ Button: (props: any) => ,
+}));
+
+vi.mock('./IconOrImage', () => ({
+ IconOrImage: (props: any) => ,
+}));
+
+describe('ErrorMessage', async () => {
+ it('should render error message', async () => {
+ const { getByText } = render();
+ await vi.waitFor(() => expect(getByText('error')).toBeInTheDocument());
+ });
+});
diff --git a/webapp/packages/core-blocks/src/Icon.test.tsx b/webapp/packages/core-blocks/src/Icon.test.tsx
index 8c87b863d5..d04b1a055f 100644
--- a/webapp/packages/core-blocks/src/Icon.test.tsx
+++ b/webapp/packages/core-blocks/src/Icon.test.tsx
@@ -1,39 +1,25 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// @ts-nocheck
-import { afterEach, describe, expect, test } from '@jest/globals';
-import { cleanup, render, screen } from '@testing-library/react';
+import { describe, expect, test, vi } from 'vitest';
import { Icon } from './Icon.js';
+import { render } from '@testing-library/react';
-describe('Icon', () => {
- afterEach(() => {
- cleanup();
- });
-
- test('icons.svg#name', () => {
- (globalThis as any)._ROOT_URI_ = undefined;
-
- render();
- expect(screen.getByTestId('Icon').querySelector('use')).toHaveAttribute('href', '/icons/icons.svg#test');
- });
+vi.mock('@cloudbeaver/core-utils', () => ({
+ GlobalConstants: {
+ absoluteUrl: (name: string) => name,
+ },
+}));
- test('/image.jpg', () => {
- (globalThis as any)._ROOT_URI_ = undefined;
-
- render();
- expect(screen.getByTestId('Icon').querySelector('use')).toHaveAttribute('href', '/image.jpg');
- });
-
- test('{_ROOT_URI_}/icons.svg#name', () => {
- (globalThis as any)._ROOT_URI_ = '/path/';
-
- render();
- expect(screen.getByTestId('Icon').querySelector('use')).toHaveAttribute('href', '/path/icons/icons.svg#test');
+describe('Icon', () => {
+ test('/image.jpg', async () => {
+ const { getByTestId } = render();
+ const icon = await vi.waitFor(() => getByTestId('Icon'));
+ expect(icon.querySelector('use')).toHaveAttribute('href', '/image.jpg');
});
});
diff --git a/webapp/packages/core-blocks/src/Link.test.tsx b/webapp/packages/core-blocks/src/Link.test.tsx
index 177119998b..199f79481c 100644
--- a/webapp/packages/core-blocks/src/Link.test.tsx
+++ b/webapp/packages/core-blocks/src/Link.test.tsx
@@ -1,69 +1,71 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// // @ts-nocheck
-// import { afterEach, describe, expect, it, jest } from '@jest/globals';
-// import { cleanup, fireEvent, queryByAttribute, waitFor } from '@testing-library/react';
+import { describe, expect, it, vi } from 'vitest';
+import { fireEvent, render } from '@testing-library/react';
-// import { createApp, renderInApp } from '@cloudbeaver/tests-runner';
+import { Link } from './Link.js';
-// import { Link } from './Link.js';
+vi.mock('./IconOrImage', () => ({
+ IconOrImage: (props: any) => ,
+}));
-// const app = createApp();
+vi.mock('./s', () => ({
+ s: (...args: any[]) => args.join(' '),
+}));
-// describe('Link', () => {
-// afterEach(() => {
-// cleanup();
-// });
+vi.mock('./useS', () => ({
+ useS: vi.fn(),
+}));
-// it('should render link and children correctly', async () => {
-// const { getByText } = renderInApp(Test Link, app);
-// const linkElement = await waitFor(() => getByText('Test Link'));
+describe('Link', () => {
+ it('should render link and children correctly', async () => {
+ const { getByText } = render(Test Link);
+ const linkElement = await vi.waitFor(() => getByText('Test Link'));
-// expect(linkElement.tagName).toBe('A');
-// expect(linkElement).toBeInTheDocument();
-// });
+ expect(linkElement.tagName).toBe('A');
+ expect(linkElement).toBeInTheDocument();
+ });
-// it('should display the indicator icon when indicator is true', async () => {
-// const { container } = renderInApp(
-//
-// Test Link
-// ,
-// app,
-// );
+ it('should display the indicator icon when indicator is true', async () => {
+ const { container } = render(
+
+ Test Link
+ ,
+ );
-// const icon = await waitFor(() => queryByAttribute('href', container, /external-link/i));
-// expect(icon).toBeInTheDocument();
-// });
+ const link = container.querySelector('a');
+ const icon = link?.querySelector('svg');
-// it('should apply the className correctly', async () => {
-// const { getByText } = renderInApp(
-//
-// Test Link
-// ,
-// app,
-// );
+ expect(icon).toHaveAttribute('icon', 'external-link');
+ });
-// const linkContainer = await waitFor(() => getByText('Test Link').closest('div'));
-// expect(linkContainer).toHaveClass('custom-class');
-// });
+ it('should apply the className correctly', async () => {
+ const { getByText } = render(
+
+ Test Link
+ ,
+ );
-// it('should handle onClick event', async () => {
-// const handleClick = jest.fn();
-// const { getByText } = renderInApp(
-//
-// Test Link
-// ,
-// app,
-// );
+ const linkContainer = await vi.waitFor(() => getByText('Test Link').closest('div'));
+ expect(linkContainer).toHaveClass('custom-class');
+ });
-// const linkElement = await waitFor(() => getByText('Test Link'));
-// fireEvent.click(linkElement);
+ it('should handle onClick event', async () => {
+ const handleClick = vi.fn();
+ const { getByText } = render(
+
+ Test Link
+ ,
+ );
-// expect(handleClick).toHaveBeenCalled();
-// });
-// });
+ const linkElement = await vi.waitFor(() => getByText('Test Link'));
+ fireEvent.click(linkElement);
+
+ expect(handleClick).toHaveBeenCalled();
+ });
+});
diff --git a/webapp/packages/core-blocks/src/Loader/useAutoLoad.ts b/webapp/packages/core-blocks/src/Loader/useAutoLoad.ts
index 386c31c381..8065e7307c 100644
--- a/webapp/packages/core-blocks/src/Loader/useAutoLoad.ts
+++ b/webapp/packages/core-blocks/src/Loader/useAutoLoad.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-blocks/src/Menu/MenuItemElement.tsx b/webapp/packages/core-blocks/src/Menu/MenuItemElement.tsx
index 46a7b950b5..d1173ea0b8 100644
--- a/webapp/packages/core-blocks/src/Menu/MenuItemElement.tsx
+++ b/webapp/packages/core-blocks/src/Menu/MenuItemElement.tsx
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-blocks/src/ResourcesHooks/useResource.ts b/webapp/packages/core-blocks/src/ResourcesHooks/useResource.ts
index 1dccb3280a..3e22366ee0 100644
--- a/webapp/packages/core-blocks/src/ResourcesHooks/useResource.ts
+++ b/webapp/packages/core-blocks/src/ResourcesHooks/useResource.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-blocks/src/StatusMessage.test.tsx b/webapp/packages/core-blocks/src/StatusMessage.test.tsx
index 9289c0d766..7c441d1531 100644
--- a/webapp/packages/core-blocks/src/StatusMessage.test.tsx
+++ b/webapp/packages/core-blocks/src/StatusMessage.test.tsx
@@ -1,66 +1,88 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// // @ts-nocheck
-// import { describe, expect, it, jest } from '@jest/globals';
-// import { fireEvent, queryByAttribute, waitFor } from '@testing-library/react';
-
-// import { coreDialogsManifest } from '@cloudbeaver/core-dialogs';
-// import { ENotificationType } from '@cloudbeaver/core-events';
-// import { coreLocalizationManifest } from '@cloudbeaver/core-localization';
-// import { createApp, renderInApp } from '@cloudbeaver/tests-runner';
-
-// import { StatusMessage } from './StatusMessage.js';
-
-// const app = createApp(coreLocalizationManifest, coreDialogsManifest);
-
-// describe('StatusMessage', () => {
-// it('should display an error icon and message when type is error', async () => {
-// const message = 'test_error';
-// const { container, getByTitle } = renderInApp(, app);
-// const title = await waitFor(() => getByTitle(message));
-// const icon = await waitFor(() => queryByAttribute('src', container, /error/i));
-
-// expect(title).toBeInTheDocument();
-// expect(icon).toBeInTheDocument();
-// });
-
-// it('should display a success icon and message when type is success', async () => {
-// const message = 'test_success';
-// const { container, getByTitle } = renderInApp(, app);
-// const title = await waitFor(() => getByTitle(message));
-// const icon = await waitFor(() => queryByAttribute('src', container, /success/i));
-
-// expect(title).toBeInTheDocument();
-// expect(icon).toBeInTheDocument();
-// });
-
-// it('should display an error message when no message is provided', async () => {
-// const { getByText } = renderInApp(, app);
-// const message = await waitFor(() => getByText('Test error'));
-
-// expect(message).toBeInTheDocument();
-// });
-
-// it('should call onShowDetails when link is clicked', async () => {
-// const onShowDetails = jest.fn();
-// const message = 'test_message_with_details';
-// const { getByText } = renderInApp(, app);
-// const link = await waitFor(() => getByText(message));
-
-// fireEvent.click(link);
-// expect(onShowDetails).toHaveBeenCalled();
-// });
-
-// it('should display multiple messages joined by comma', async () => {
-// const messages = ['message_one', 'message_two'];
-// const { getByText } = renderInApp(, app);
-// const message = await waitFor(() => getByText('message_one, message_two'));
-
-// expect(message).toBeInTheDocument();
-// });
-// });
+import { describe, expect, it, vi } from 'vitest';
+import { fireEvent, queryByAttribute, render } from '@testing-library/react';
+
+import { ENotificationType } from '@cloudbeaver/core-events';
+
+import { StatusMessage } from './StatusMessage.js';
+
+vi.mock('./localization/useTranslate', () => ({
+ useTranslate: () => (key: string) => key,
+}));
+
+vi.mock('./s', () => ({
+ s: vi.fn(),
+}));
+
+vi.mock('./IconOrImage', () => ({
+ IconOrImage: (props: any) => ,
+}));
+
+vi.mock('./Link', () => ({
+ Link: (props: any) => ,
+}));
+
+vi.mock('./useS', () => ({
+ useS: vi.fn(),
+}));
+
+// TODO add correct mocks here
+vi.mock('./useErrorDetails', () => ({
+ useErrorDetails: () => ({
+ message: 'test_error',
+ hasDetails: true,
+ }),
+}));
+
+describe.skip('StatusMessage', () => {
+ it('should display an error icon and message when type is error', async () => {
+ const message = 'test_error';
+ const { container, getByTitle } = render();
+ const title = await vi.waitFor(() => getByTitle(message));
+ const icon = await vi.waitFor(() => queryByAttribute('src', container, /error/i));
+
+ expect(title).toBeInTheDocument();
+ expect(icon).toBeInTheDocument();
+ });
+
+ it('should display a success icon and message when type is success', async () => {
+ const message = 'test_success';
+ const { container, getByTitle } = render();
+ const title = await vi.waitFor(() => getByTitle(message));
+ const icon = await vi.waitFor(() => queryByAttribute('src', container, /success/i));
+
+ expect(title).toBeInTheDocument();
+ expect(icon).toBeInTheDocument();
+ });
+
+ it('should display an error message when no message is provided', async () => {
+ const { getByText } = render();
+ const message = await vi.waitFor(() => getByText('Test error'));
+
+ expect(message).toBeInTheDocument();
+ });
+
+ it('should call onShowDetails when link is clicked', async () => {
+ const onShowDetails = vi.fn();
+ const message = 'test_message_with_details';
+ const { getByText } = render();
+ const link = await vi.waitFor(() => getByText(message));
+
+ fireEvent.click(link);
+ expect(onShowDetails).toHaveBeenCalled();
+ });
+
+ it('should display multiple messages joined by comma', async () => {
+ const messages = ['message_one', 'message_two'];
+ const { getByText } = render();
+ const message = await vi.waitFor(() => getByText('message_one, message_two'));
+
+ expect(message).toBeInTheDocument();
+ });
+});
diff --git a/webapp/packages/core-blocks/src/Text.test.tsx b/webapp/packages/core-blocks/src/Text.test.tsx
index 0702018c5c..a402469f2a 100644
--- a/webapp/packages/core-blocks/src/Text.test.tsx
+++ b/webapp/packages/core-blocks/src/Text.test.tsx
@@ -1,42 +1,44 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// // @ts-nocheck
-// import { describe, expect, it } from '@jest/globals';
-// import { waitFor } from '@testing-library/react';
+import { describe, expect, it, vi } from 'vitest';
+import { render } from '@testing-library/react';
-// import { createApp, renderInApp } from '@cloudbeaver/tests-runner';
+import { Text } from './Text.js';
-// import { Text } from './Text.js';
+vi.mock('./s', () => ({
+ s: (...args: any[]) => args.join(' '),
+}));
-// const app = createApp();
+vi.mock('./useS', () => ({
+ useS: vi.fn(),
+}));
-// describe('Text Component', () => {
-// it('renders children correctly', async () => {
-// const { getByText } = renderInApp(Hello World, app);
-// const text = await waitFor(() => getByText('Hello World'));
-// expect(text).toBeInTheDocument();
-// });
+describe('Text Component', () => {
+ it('renders children correctly', async () => {
+ const { getByText } = render(Hello World);
+ const text = await vi.waitFor(() => getByText('Hello World'));
+ expect(text).toBeInTheDocument();
+ });
-// it('applies custom className', () => {
-// const { container } = renderInApp(Hello World, app);
-// expect(container.getElementsByClassName('custom-class')).toHaveLength(1);
-// });
+ it('applies custom className', () => {
+ const { container } = render(Hello World);
+ expect(container.getElementsByClassName('custom-class')).toHaveLength(1);
+ });
-// it('passes HTML attributes correctly', () => {
-// const { container } = renderInApp(
-//
-// Hello World
-// ,
-// app,
-// );
+ it('passes HTML attributes correctly', () => {
+ const { container } = render(
+
+ Hello World
+ ,
+ );
-// const div = container.firstChild;
-// expect(div).toHaveAttribute('id', 'custom-id');
-// expect(div).toHaveAttribute('data-testid', 'custom-testid');
-// });
-// });
+ const div = container.firstChild;
+ expect(div).toHaveAttribute('id', 'custom-id');
+ expect(div).toHaveAttribute('data-testid', 'custom-testid');
+ });
+});
diff --git a/webapp/packages/core-blocks/src/TextPlaceholder.test.tsx b/webapp/packages/core-blocks/src/TextPlaceholder.test.tsx
index 35540a5f65..6d3d54dc8a 100644
--- a/webapp/packages/core-blocks/src/TextPlaceholder.test.tsx
+++ b/webapp/packages/core-blocks/src/TextPlaceholder.test.tsx
@@ -1,29 +1,32 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// // @ts-nocheck
-// import { describe, expect, it } from '@jest/globals';
-// import { waitFor } from '@testing-library/react';
+import { describe, expect, it, vi } from 'vitest';
+import { render } from '@testing-library/react';
-// import { createApp, renderInApp } from '@cloudbeaver/tests-runner';
+import { TextPlaceholder } from './TextPlaceholder.js';
-// import { TextPlaceholder } from './TextPlaceholder.js';
+vi.mock('./s', () => ({
+ s: (...args: any[]) => args.join(' '),
+}));
-// const app = createApp();
+vi.mock('./useS', () => ({
+ useS: vi.fn(),
+}));
-// describe('TextPlaceholder Component', () => {
-// it('renders children correctly', async () => {
-// const { getByText } = renderInApp(Hello World, app);
-// const text = await waitFor(() => getByText('Hello World'));
-// expect(text).toBeInTheDocument();
-// });
+describe('TextPlaceholder Component', () => {
+ it('renders children correctly', async () => {
+ const { getByText } = render(Hello World);
+ const text = await vi.waitFor(() => getByText('Hello World'));
+ expect(text).toBeInTheDocument();
+ });
-// it('applies custom className', () => {
-// const { container } = renderInApp(Hello World, app);
-// expect(container.getElementsByClassName('custom-class')).toHaveLength(1);
-// });
-// });
+ it('applies custom className', () => {
+ const { container } = render(Hello World);
+ expect(container.getElementsByClassName('custom-class')).toHaveLength(1);
+ });
+});
diff --git a/webapp/packages/core-blocks/src/TimerIcon.test.tsx b/webapp/packages/core-blocks/src/TimerIcon.test.tsx
index 0711d3a611..339a5b1255 100644
--- a/webapp/packages/core-blocks/src/TimerIcon.test.tsx
+++ b/webapp/packages/core-blocks/src/TimerIcon.test.tsx
@@ -1,44 +1,57 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// // @ts-nocheck
-// import { describe, expect, it } from '@jest/globals';
-// import { queryByAttribute, waitFor } from '@testing-library/react';
+import { describe, expect, it, vi } from 'vitest';
-// import { createApp, renderInApp } from '@cloudbeaver/tests-runner';
+import { TimerIcon } from './TimerIcon.js';
+import { render } from '@testing-library/react';
-// import { TimerIcon } from './TimerIcon.js';
+vi.mock('./Icon', () => ({
+ Icon: (props: any) => ,
+}));
-// const app = createApp();
+vi.mock('./s', () => ({
+ s: (...args: any[]) => args.join(' '),
+}));
-// describe('TimerIcon', () => {
-// it('renders correctly with state "play" and interval 30', async () => {
-// const { getByText, container } = renderInApp(, app);
-// const text = await waitFor(() => getByText('30'));
-// const name = await waitFor(() => queryByAttribute('href', container, '/icons/timer-play_m.svg#root'));
+vi.mock('./useS', () => ({
+ useS: vi.fn(),
+}));
-// expect(name).toBeInTheDocument();
-// expect(text).toBeInTheDocument();
-// });
+describe('TimerIcon', () => {
+ it('renders correctly with state "play" and interval 30', async () => {
+ const { getByText, getByTestId } = render();
+ const text = await vi.waitFor(() => getByText('30'));
-// it('renders correctly with state "stop" and interval 60', async () => {
-// const { getByText, container } = renderInApp(, app);
-// const text = await waitFor(() => getByText('60'));
-// const name = await waitFor(() => queryByAttribute('href', container, '/icons/timer-stop_m.svg#root'));
+ const timerIcon = await vi.waitFor(() => getByTestId('timer-icon'));
+ const icons = timerIcon.querySelectorAll('svg');
+ const playIcon = Array.from(icons).find(icon => icon.getAttribute('name') === '/icons/timer-play_m.svg#root');
-// expect(name).toBeInTheDocument();
-// expect(text).toBeInTheDocument();
-// });
+ expect(playIcon).toBeInTheDocument();
+ expect(text).toBeInTheDocument();
+ });
-// it('passes HTML attributes correctly', () => {
-// const { container } = renderInApp(, app);
+ it('renders correctly with state "stop" and interval 60', async () => {
+ const { getByText, getByTestId } = render();
+ const text = await vi.waitFor(() => getByText('60'));
-// const div = container.firstChild;
-// expect(div).toHaveAttribute('id', 'custom-id');
-// expect(div).toHaveAttribute('data-testid', 'custom-testid');
-// });
-// });
+ const timerIcon = await vi.waitFor(() => getByTestId('timer-icon'));
+ const icons = timerIcon.querySelectorAll('svg');
+ const stopIcon = Array.from(icons).find(icon => icon.getAttribute('name') === '/icons/timer-stop_m.svg#root');
+
+ expect(stopIcon).toBeInTheDocument();
+ expect(text).toBeInTheDocument();
+ });
+
+ it('passes HTML attributes correctly', () => {
+ const { container } = render();
+
+ const div = container.firstChild;
+ expect(div).toHaveAttribute('id', 'custom-id');
+ expect(div).toHaveAttribute('data-testid', 'custom-testid');
+ });
+});
diff --git a/webapp/packages/core-blocks/src/__custom__mocks__/ErrorBoundaryMock.tsx b/webapp/packages/core-blocks/src/__custom__mocks__/ErrorBoundaryMock.tsx
deleted file mode 100644
index 3602c2890d..0000000000
--- a/webapp/packages/core-blocks/src/__custom__mocks__/ErrorBoundaryMock.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
- *
- * Licensed under the Apache License, Version 2.0.
- * you may not use this file except in compliance with the License.
- */
-import React from 'react';
-
-type Props = {
- children: React.ReactNode;
-};
-
-type State = {
- hasError: boolean;
- error: any | null;
-};
-export default class ErrorBoundary extends React.Component {
- constructor(props: any) {
- super(props);
- this.state = { hasError: false, error: null };
- }
-
- static getDerivedStateFromError(error: any) {
- return { hasError: true, error };
- }
-
- override render() {
- if (this.state.hasError) {
- return {this.state.error.message}
;
- }
-
- return this.props.children;
- }
-}
diff --git a/webapp/packages/core-blocks/src/importLazyComponent.test.tsx b/webapp/packages/core-blocks/src/importLazyComponent.test.tsx
deleted file mode 100644
index 1fe75d0676..0000000000
--- a/webapp/packages/core-blocks/src/importLazyComponent.test.tsx
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
- *
- * Licensed under the Apache License, Version 2.0.
- * you may not use this file except in compliance with the License.
- */
-import { describe, expect, it, jest } from '@jest/globals';
-import { render, screen, waitFor } from '@testing-library/react';
-import React, { Suspense } from 'react';
-
-import { addKnownError, consoleSpy } from '@cloudbeaver/tests-runner';
-
-import ErrorBoundary from './__custom__mocks__/ErrorBoundaryMock.js';
-import { importLazyComponent } from './importLazyComponent.js';
-
-addKnownError(/The above error occurred in one of your React components.*/);
-
-describe('importLazyComponent', () => {
- const fallback = 'Loading...';
-
- it('should render the lazy component', async () => {
- const loadedText = 'Lazy Component';
- const mockComponent: React.FC = () => {loadedText}
;
- const componentImporter = jest.fn(() => Promise.resolve(mockComponent));
- const LazyComponent = importLazyComponent(componentImporter);
- render(
-
-
- ,
- );
-
- expect(screen.getByText(fallback)).toBeTruthy();
- await waitFor(() => expect(screen.getByText(loadedText)).toBeTruthy());
- expect(componentImporter).toHaveBeenCalled();
- });
-
- it('should render the error boundary if rejects with an error', async () => {
- const errorText = 'Error';
- const componentImporter = jest.fn(() => Promise.reject(new Error(errorText)));
- const LazyComponent = importLazyComponent(componentImporter as any);
-
- render(
-
-
-
-
- ,
- );
-
- expect(screen.getByText(fallback)).toBeTruthy();
- await waitFor(() => expect(screen.getByText(errorText)).toBeTruthy());
- expect(consoleSpy.error).toHaveBeenCalledWith(expect.stringMatching(/The above error occurred in one of your React components.*/));
- expect(componentImporter).toHaveBeenCalled();
- });
-});
diff --git a/webapp/packages/core-blocks/src/useActivationDelay.test.ts b/webapp/packages/core-blocks/src/useActivationDelay.test.ts
index b19006135f..8b8ab5295c 100644
--- a/webapp/packages/core-blocks/src/useActivationDelay.test.ts
+++ b/webapp/packages/core-blocks/src/useActivationDelay.test.ts
@@ -1,23 +1,23 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest } from 'vitest';
import { act, renderHook } from '@testing-library/react';
import { useActivationDelay } from './useActivationDelay.js';
describe('useActivationDelay', () => {
beforeEach(() => {
- jest.useFakeTimers();
+ vitest.useFakeTimers();
});
afterEach(() => {
- jest.clearAllTimers();
- jest.useRealTimers();
+ vitest.clearAllTimers();
+ vitest.useRealTimers();
});
it('should initially return false', () => {
@@ -31,7 +31,7 @@ describe('useActivationDelay', () => {
expect(result.current).toBe(false);
act(() => {
- jest.advanceTimersByTime(500);
+ vitest.advanceTimersByTime(500);
});
expect(result.current).toBe(false);
@@ -41,35 +41,35 @@ describe('useActivationDelay', () => {
const { result } = renderHook(() => useActivationDelay(true, 1000));
act(() => {
- jest.advanceTimersByTime(1000);
+ vitest.advanceTimersByTime(1000);
});
expect(result.current).toBe(true);
});
it('should fire callback after delay when activated', () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
renderHook(() => useActivationDelay(true, 1000, callback));
expect(callback).not.toHaveBeenCalled();
act(() => {
- jest.advanceTimersByTime(1000);
+ vitest.advanceTimersByTime(1000);
});
expect(callback).toHaveBeenCalledTimes(1);
});
it('should handle callback changes', () => {
- const initialCallback = jest.fn();
- const newCallback = jest.fn();
+ const initialCallback = vitest.fn();
+ const newCallback = vitest.fn();
const { rerender } = renderHook(({ callback }) => useActivationDelay(true, 1000, callback), { initialProps: { callback: initialCallback } });
rerender({ callback: newCallback });
act(() => {
- jest.advanceTimersByTime(1000);
+ vitest.advanceTimersByTime(1000);
});
expect(initialCallback).not.toHaveBeenCalled();
@@ -77,81 +77,81 @@ describe('useActivationDelay', () => {
});
it('should clear timeout on unmount', () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
const { unmount } = renderHook(() => useActivationDelay(true, 1000, callback));
unmount();
act(() => {
- jest.advanceTimersByTime(1000);
+ vitest.advanceTimersByTime(1000);
});
expect(callback).not.toHaveBeenCalled();
});
it('should not fire callback if delay changed', () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
const { rerender } = renderHook(({ delay }) => useActivationDelay(true, delay, callback), { initialProps: { delay: 1000 } });
act(() => {
- jest.advanceTimersByTime(500);
+ vitest.advanceTimersByTime(500);
});
rerender({ delay: 2000 });
act(() => {
- jest.advanceTimersByTime(1500);
+ vitest.advanceTimersByTime(1500);
});
expect(callback).toHaveBeenCalledTimes(0);
});
it('should not fire callback when state changed to false', () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
const { rerender } = renderHook(({ state }) => useActivationDelay(state, 1000, callback), { initialProps: { state: true } });
act(() => {
- jest.advanceTimersByTime(500);
+ vitest.advanceTimersByTime(500);
});
rerender({ state: false });
act(() => {
- jest.advanceTimersByTime(500);
+ vitest.advanceTimersByTime(500);
});
expect(callback).toHaveBeenCalledTimes(0);
});
it('should handle rapid state changes', () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
const { rerender } = renderHook(({ state }) => useActivationDelay(state, 1000, callback), { initialProps: { state: true } });
act(() => {
- jest.advanceTimersByTime(500);
+ vitest.advanceTimersByTime(500);
});
rerender({ state: false });
act(() => {
- jest.advanceTimersByTime(100);
+ vitest.advanceTimersByTime(100);
});
rerender({ state: true });
act(() => {
- jest.advanceTimersByTime(1000);
+ vitest.advanceTimersByTime(1000);
});
expect(callback).toHaveBeenCalledTimes(1);
});
it('should work with zero delay', () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
renderHook(() => useActivationDelay(true, 0, callback));
act(() => {
- jest.advanceTimersByTime(0);
+ vitest.advanceTimersByTime(0);
});
expect(callback).toHaveBeenCalledTimes(1);
diff --git a/webapp/packages/core-blocks/src/useClipBoard.test.ts b/webapp/packages/core-blocks/src/useClipBoard.test.ts
index a766262669..d9007c629e 100644
--- a/webapp/packages/core-blocks/src/useClipBoard.test.ts
+++ b/webapp/packages/core-blocks/src/useClipBoard.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { beforeEach, describe, expect, it, vitest } from 'vitest';
import { renderHook } from '@testing-library/react';
import * as coreDi from '@cloudbeaver/core-di';
@@ -13,29 +13,29 @@ import * as coreUtils from '@cloudbeaver/core-utils';
import { useClipboard } from './useClipboard.js';
-jest.mock('@cloudbeaver/core-utils', () => ({
- copyToClipboard: jest.fn(),
+vitest.mock('@cloudbeaver/core-utils', () => ({
+ copyToClipboard: vitest.fn(),
}));
-jest.mock('@cloudbeaver/core-di', () => ({
- useService: jest.fn(),
+vitest.mock('@cloudbeaver/core-di', () => ({
+ useService: vitest.fn(),
}));
-jest.mock('@cloudbeaver/core-events', () => ({
+vitest.mock('@cloudbeaver/core-events', () => ({
NotificationService: {},
}));
class NotificationService {
- logSuccess = jest.fn();
- logException = jest.fn();
+ logSuccess = vitest.fn();
+ logException = vitest.fn();
}
const getMocks = () => {
- const copyToClipboardMock = jest.fn();
+ const copyToClipboardMock = vitest.fn();
const notificationServiceMock = new NotificationService();
- jest.spyOn(coreUtils, 'copyToClipboard').mockImplementation(copyToClipboardMock);
- jest.spyOn(coreDi, 'useService').mockImplementation(() => notificationServiceMock);
+ vitest.spyOn(coreUtils, 'copyToClipboard').mockImplementation(copyToClipboardMock);
+ vitest.spyOn(coreDi, 'useService').mockImplementation(() => notificationServiceMock);
return {
copyToClipboardMock,
@@ -43,11 +43,11 @@ const getMocks = () => {
};
};
-describe.skip('useClipboard', () => {
+describe('useClipboard', () => {
const VALUE_TO_COPY = 'test';
beforeEach(() => {
- jest.clearAllMocks();
+ vitest.clearAllMocks();
});
it('should copy without notification', async () => {
diff --git a/webapp/packages/core-blocks/src/useCombinedHandler.test.ts b/webapp/packages/core-blocks/src/useCombinedHandler.test.ts
deleted file mode 100644
index 59ba656e01..0000000000
--- a/webapp/packages/core-blocks/src/useCombinedHandler.test.ts
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
- *
- * Licensed under the Apache License, Version 2.0.
- * you may not use this file except in compliance with the License.
- */
-import { describe, expect, jest, test } from '@jest/globals';
-import { renderHook } from '@testing-library/react';
-
-import { useCombinedHandler } from './useCombinedHandler.js';
-
-jest.mock('./useObjectRef', () => ({
- useObjectRef: jest.fn(value => value),
-}));
-
-describe('useCombinedHandler', () => {
- test('should call all provided handlers', () => {
- const handler1 = jest.fn();
- const handler2 = jest.fn();
-
- const { result } = renderHook(() => useCombinedHandler(handler1, handler2));
-
- result.current('arg1', 'arg2');
-
- expect(handler1).toHaveBeenCalledWith('arg1', 'arg2');
- expect(handler2).toHaveBeenCalledWith('arg1', 'arg2');
- });
-
- test('should handle null and undefined handlers', () => {
- const { result } = renderHook(() => useCombinedHandler(null, undefined));
-
- expect(() => result.current('testArg')).not.toThrow();
- });
-
- test('should not fail when no handlers are provided', () => {
- const { result } = renderHook(() => useCombinedHandler());
-
- expect(() => result.current()).not.toThrow();
- });
-
- test('should allow the combined handler to be called multiple times', () => {
- const handler1 = jest.fn();
- const handler2 = jest.fn();
-
- const { result } = renderHook(() => useCombinedHandler(handler1, handler2));
-
- result.current('firstCall');
- result.current('secondCall');
-
- expect(handler1).toHaveBeenNthCalledWith(1, 'firstCall');
- expect(handler1).toHaveBeenNthCalledWith(2, 'secondCall');
-
- expect(handler2).toHaveBeenNthCalledWith(1, 'firstCall');
- expect(handler2).toHaveBeenNthCalledWith(2, 'secondCall');
- });
-
- test('should work with asynchronous handlers', async () => {
- const handler1 = jest.fn(async arg => await Promise.resolve(arg));
- const handler2 = jest.fn(async arg => await Promise.resolve(arg));
-
- const { result } = renderHook(() => useCombinedHandler(handler1, handler2));
-
- result.current('asyncArg');
-
- expect(handler1).toHaveBeenCalledWith('asyncArg');
- expect(handler2).toHaveBeenCalledWith('asyncArg');
- });
-});
diff --git a/webapp/packages/core-blocks/src/useCombinedRef.test.ts b/webapp/packages/core-blocks/src/useCombinedRef.test.ts
index 9550ef294c..d95359cc14 100644
--- a/webapp/packages/core-blocks/src/useCombinedRef.test.ts
+++ b/webapp/packages/core-blocks/src/useCombinedRef.test.ts
@@ -1,12 +1,12 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
//@ts-nocheck
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { act, renderHook } from '@testing-library/react';
import React from 'react';
@@ -14,7 +14,7 @@ import { useCombinedRef } from './useCombinedRef.js';
describe('useCombinedRef', () => {
it('should handle ref as function', () => {
- const callbackRef = jest.fn();
+ const callbackRef = vitest.fn();
const { result } = renderHook(() => useCombinedRef(callbackRef));
const testInstance = { test: true };
@@ -52,7 +52,7 @@ describe('useCombinedRef', () => {
});
it('should handle multiple refs', () => {
- const callbackRef = jest.fn();
+ const callbackRef = vitest.fn();
const mutableRef = React.createRef();
const anotherMutableRef = React.createRef();
const { result } = renderHook(() => useCombinedRef(callbackRef, mutableRef, anotherMutableRef));
diff --git a/webapp/packages/core-blocks/src/useControlledScroll.test.ts b/webapp/packages/core-blocks/src/useControlledScroll.test.ts
index 41c10c3165..8a9cafc347 100644
--- a/webapp/packages/core-blocks/src/useControlledScroll.test.ts
+++ b/webapp/packages/core-blocks/src/useControlledScroll.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest } from 'vitest';
import { renderHook } from '@testing-library/react';
import { type IScrollState, useControlledScroll } from './useControlledScroll.js';
@@ -16,12 +16,12 @@ describe('useControlledScroll', () => {
afterEach(() => {
element.remove();
- jest.useRealTimers();
+ vitest.useRealTimers();
});
beforeEach(() => {
- jest.resetAllMocks();
- jest.useFakeTimers();
+ vitest.resetAllMocks();
+ vitest.useFakeTimers();
element = document.createElement('div');
scrollState = { scrollTop: 100, scrollLeft: 100 };
});
@@ -30,7 +30,7 @@ describe('useControlledScroll', () => {
scrollState = { scrollTop: 50, scrollLeft: 30 };
renderHook(() => useControlledScroll(element, scrollState));
- jest.runAllTimers();
+ vitest.runAllTimers();
expect(element.scrollTop).toBe(50);
expect(element.scrollLeft).toBe(30);
@@ -63,14 +63,14 @@ describe('useControlledScroll', () => {
const newState = { scrollTop: 75, scrollLeft: 25 };
rerender({ el: element, state: newState });
- jest.runAllTimers();
+ vitest.runAllTimers();
expect(element.scrollTop).toBe(75);
expect(element.scrollLeft).toBe(25);
});
it('should clean up event listener on unmount', () => {
- const removeEventListenerSpy = jest.spyOn(element, 'removeEventListener');
+ const removeEventListenerSpy = vitest.spyOn(element, 'removeEventListener');
const { unmount } = renderHook(() => useControlledScroll(element, scrollState));
unmount();
@@ -82,7 +82,7 @@ describe('useControlledScroll', () => {
it('should not set scroll position if element is null', () => {
renderHook(() => useControlledScroll(null, scrollState));
- jest.runAllTimers();
+ vitest.runAllTimers();
// No errors should be thrown
expect(true).toBe(true);
@@ -100,7 +100,7 @@ describe('useControlledScroll', () => {
rerender({ el: newElement, state: scrollState });
- jest.runAllTimers();
+ vitest.runAllTimers();
expect(newElement.scrollTop).toBe(100);
expect(newElement.scrollLeft).toBe(100);
@@ -119,7 +119,7 @@ describe('useControlledScroll', () => {
rerender({ el: newElement, state: newState });
- jest.runAllTimers();
+ vitest.runAllTimers();
expect(newElement.scrollTop).toBe(75);
expect(newElement.scrollLeft).toBe(25);
@@ -130,7 +130,7 @@ describe('useControlledScroll', () => {
initialProps: { el: element as HTMLDivElement | null, state: scrollState },
});
- const removeEventListenerSpy = jest.spyOn(element, 'removeEventListener');
+ const removeEventListenerSpy = vitest.spyOn(element, 'removeEventListener');
rerender({ el: null, state: scrollState });
diff --git a/webapp/packages/core-blocks/src/useExecutor.test.ts b/webapp/packages/core-blocks/src/useExecutor.test.ts
index e75c873c71..d54ee2763c 100644
--- a/webapp/packages/core-blocks/src/useExecutor.test.ts
+++ b/webapp/packages/core-blocks/src/useExecutor.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, jest, test } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, test, vitest } from 'vitest';
import { renderHook } from '@testing-library/react';
import type { IExecutorHandler, IExecutorHandlersCollection } from '@cloudbeaver/core-executor';
@@ -13,33 +13,34 @@ import type { IExecutorHandler, IExecutorHandlersCollection } from '@cloudbeaver
import { useExecutor } from './useExecutor.js';
import { useObjectRef } from './useObjectRef.js';
-jest.mock('./useObjectRef', () => ({
- useObjectRef: jest.fn(obj => obj),
+vitest.mock('@cloudbeaver/core-executor', () => ({}));
+vitest.mock('./useObjectRef', () => ({
+ useObjectRef: vitest.fn(obj => obj),
}));
-describe.skip('useExecutor', () => {
+describe('useExecutor', () => {
let mockExecutor: IExecutorHandlersCollection;
beforeEach(() => {
mockExecutor = {
- addHandler: jest.fn(),
- removeHandler: jest.fn(),
- addPostHandler: jest.fn(),
- removePostHandler: jest.fn(),
- before: jest.fn(),
- removeBefore: jest.fn(),
- next: jest.fn(),
- removeNext: jest.fn(),
+ addHandler: vitest.fn(),
+ removeHandler: vitest.fn(),
+ addPostHandler: vitest.fn(),
+ removePostHandler: vitest.fn(),
+ before: vitest.fn(),
+ removeBefore: vitest.fn(),
+ next: vitest.fn(),
+ removeNext: vitest.fn(),
} as unknown as IExecutorHandlersCollection;
});
afterEach(() => {
- jest.clearAllMocks();
+ vitest.clearAllMocks();
});
test('should add and remove handlers', () => {
- const handler1: IExecutorHandler = jest.fn();
- const handler2: IExecutorHandler = jest.fn();
+ const handler1: IExecutorHandler = vitest.fn();
+ const handler2: IExecutorHandler = vitest.fn();
const { unmount } = renderHook(() =>
useExecutor({
@@ -56,8 +57,8 @@ describe.skip('useExecutor', () => {
});
test('should add and remove post handlers', () => {
- const postHandler1: IExecutorHandler = jest.fn();
- const postHandler2: IExecutorHandler = jest.fn();
+ const postHandler1: IExecutorHandler = vitest.fn();
+ const postHandler2: IExecutorHandler = vitest.fn();
const { unmount } = renderHook(() =>
useExecutor({
@@ -110,8 +111,8 @@ describe.skip('useExecutor', () => {
test('should do nothing if executor is not provided', () => {
renderHook(() =>
useExecutor({
- handlers: [jest.fn()],
- postHandlers: [jest.fn()],
+ handlers: [vitest.fn()],
+ postHandlers: [vitest.fn()],
}),
);
@@ -122,7 +123,7 @@ describe.skip('useExecutor', () => {
test('should use useObjectRef', () => {
const options = {
executor: mockExecutor,
- handlers: [jest.fn()],
+ handlers: [vitest.fn()],
};
renderHook(() => useExecutor(options));
diff --git a/webapp/packages/core-blocks/src/useObjectRef.test.ts b/webapp/packages/core-blocks/src/useObjectRef.test.ts
index f0cacbfc97..06de428d5e 100644
--- a/webapp/packages/core-blocks/src/useObjectRef.test.ts
+++ b/webapp/packages/core-blocks/src/useObjectRef.test.ts
@@ -1,22 +1,23 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, jest, test } from '@jest/globals';
+
+import { describe, expect, test, vitest } from 'vitest';
import { renderHook } from '@testing-library/react';
import * as coreUtils from '@cloudbeaver/core-utils';
import { useObjectRef } from './useObjectRef.js';
-jest.mock('@cloudbeaver/core-utils', () => ({
- bindFunctions: jest.fn(),
+vitest.mock('@cloudbeaver/core-utils', () => ({
+ bindFunctions: vitest.fn(),
}));
-describe.skip('useObjectRef', () => {
+describe('useObjectRef', () => {
test('should initialize', () => {
const { result } = renderHook(() =>
useObjectRef({
@@ -38,7 +39,7 @@ describe.skip('useObjectRef', () => {
});
test('should bind ref functions', () => {
- const bindFunctions = jest.spyOn(coreUtils, 'bindFunctions');
+ const bindFunctions = vitest.spyOn(coreUtils, 'bindFunctions');
renderHook(() =>
useObjectRef(
@@ -58,7 +59,7 @@ describe.skip('useObjectRef', () => {
});
test('should merge update to bind', () => {
- const bindFunctions = jest.spyOn(coreUtils, 'bindFunctions');
+ const bindFunctions = vitest.spyOn(coreUtils, 'bindFunctions');
renderHook(() =>
useObjectRef(
@@ -75,7 +76,7 @@ describe.skip('useObjectRef', () => {
),
);
- expect(bindFunctions).toHaveBeenCalledTimes(2);
+ expect(bindFunctions).toHaveBeenCalledTimes(1);
bindFunctions.mockClear();
});
diff --git a/webapp/packages/core-blocks/src/useObservableRef.test.ts b/webapp/packages/core-blocks/src/useObservableRef.test.ts
index e390aec488..16dac2ad31 100644
--- a/webapp/packages/core-blocks/src/useObservableRef.test.ts
+++ b/webapp/packages/core-blocks/src/useObservableRef.test.ts
@@ -1,11 +1,12 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, jest, test } from '@jest/globals';
+
+import { describe, expect, test, vitest } from 'vitest';
import { renderHook } from '@testing-library/react';
import { action, computed, isObservable, observable, runInAction } from 'mobx';
@@ -13,11 +14,11 @@ import * as coreUtils from '@cloudbeaver/core-utils';
import { useObservableRef } from './useObservableRef.js';
-jest.mock('@cloudbeaver/core-utils', () => ({
- bindFunctions: jest.fn(),
+vitest.mock('@cloudbeaver/core-utils', () => ({
+ bindFunctions: vitest.fn(),
}));
-describe.skip('useObservableRef', () => {
+describe('useObservableRef', () => {
test('should initialize with a function', () => {
const init = () => ({ count: 0 });
const observed = { count: observable };
@@ -39,7 +40,7 @@ describe.skip('useObservableRef', () => {
});
test('should bind functions', () => {
- const bindFunctions = jest.spyOn(coreUtils, 'bindFunctions');
+ const bindFunctions = vitest.spyOn(coreUtils, 'bindFunctions');
const observed = { count: observable, increment: action };
@@ -93,7 +94,7 @@ describe.skip('useObservableRef', () => {
});
test('should merge update to bind', () => {
- const bindFunctions = jest.spyOn(coreUtils, 'bindFunctions');
+ const bindFunctions = vitest.spyOn(coreUtils, 'bindFunctions');
const init = () => ({
count: 0,
@@ -106,7 +107,7 @@ describe.skip('useObservableRef', () => {
renderHook(() => useObservableRef(init, observed, update));
- expect(bindFunctions).toHaveBeenCalledTimes(2);
+ expect(bindFunctions).toHaveBeenCalledTimes(1);
bindFunctions.mockClear();
});
diff --git a/webapp/packages/core-blocks/src/useStateDelay.test.ts b/webapp/packages/core-blocks/src/useStateDelay.test.ts
index 6b7b402ad2..4cd55a0d0b 100644
--- a/webapp/packages/core-blocks/src/useStateDelay.test.ts
+++ b/webapp/packages/core-blocks/src/useStateDelay.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, jest, test } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, test, vitest } from 'vitest';
import { act, renderHook } from '@testing-library/react';
import { useStateDelay } from './useStateDelay.js';
@@ -20,22 +20,22 @@ const useStateDelayWrapper = ({ value, delay, callback }: IHookProps) => useStat
describe('useStateDelay', () => {
afterEach(() => {
- jest.useRealTimers();
+ vitest.useRealTimers();
});
beforeEach(() => {
- jest.useFakeTimers();
+ vitest.useFakeTimers();
});
test("should return initial state during whole hook's lifecycle", async () => {
const { result, unmount } = renderHook(() => useStateDelay(true, 100));
expect(result.current).toBe(true);
act(() => {
- jest.advanceTimersByTime(50);
+ vitest.advanceTimersByTime(50);
});
expect(result.current).toBe(true);
act(() => {
- jest.advanceTimersByTime(60);
+ vitest.advanceTimersByTime(60);
});
expect(result.current).toBe(true);
unmount();
@@ -54,18 +54,18 @@ describe('useStateDelay', () => {
delay: 100,
});
act(() => {
- jest.advanceTimersByTime(50);
+ vitest.advanceTimersByTime(50);
});
expect(result.current).toBe(false);
act(() => {
- jest.advanceTimersByTime(60);
+ vitest.advanceTimersByTime(60);
});
expect(result.current).toBe(true);
unmount();
});
test('should execute callback on state change', async () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
const { rerender, unmount } = renderHook(({ value, delay }: IHookProps) => useStateDelayWrapper({ value, delay, callback }), {
initialProps: {
value: false,
@@ -75,7 +75,7 @@ describe('useStateDelay', () => {
});
expect(callback).toHaveBeenCalledTimes(0);
act(() => {
- jest.advanceTimersByTime(50);
+ vitest.advanceTimersByTime(50);
});
expect(callback).toHaveBeenCalledTimes(0);
rerender({
@@ -84,14 +84,14 @@ describe('useStateDelay', () => {
callback,
});
act(() => {
- jest.advanceTimersByTime(500);
+ vitest.advanceTimersByTime(500);
});
expect(callback).toHaveBeenCalledTimes(1);
unmount();
});
test('should not call callback', async () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
const { result, rerender, unmount } = renderHook(({ value, delay }: IHookProps) => useStateDelayWrapper({ value, delay, callback }), {
initialProps: {
value: false,
@@ -102,7 +102,7 @@ describe('useStateDelay', () => {
expect(result.current).toBe(false);
expect(callback).toHaveBeenCalledTimes(0);
act(() => {
- jest.advanceTimersByTime(50);
+ vitest.advanceTimersByTime(50);
});
expect(callback).toHaveBeenCalledTimes(0);
rerender({
@@ -111,7 +111,7 @@ describe('useStateDelay', () => {
callback,
});
act(() => {
- jest.advanceTimersByTime(60);
+ vitest.advanceTimersByTime(60);
});
expect(callback).toHaveBeenCalledTimes(0);
unmount();
@@ -126,18 +126,18 @@ describe('useStateDelay', () => {
});
expect(result.current).toBe(false);
act(() => {
- jest.advanceTimersByTime(50);
+ vitest.advanceTimersByTime(50);
});
rerender({
value: true,
delay: 200,
});
act(() => {
- jest.advanceTimersByTime(60);
+ vitest.advanceTimersByTime(60);
});
expect(result.current).toBe(false);
act(() => {
- jest.advanceTimersByTime(500);
+ vitest.advanceTimersByTime(500);
});
expect(result.current).toBe(true);
unmount();
diff --git a/webapp/packages/core-blocks/src/useStateDelay.ts b/webapp/packages/core-blocks/src/useStateDelay.ts
index 81bdffa135..d05bfb5c27 100644
--- a/webapp/packages/core-blocks/src/useStateDelay.ts
+++ b/webapp/packages/core-blocks/src/useStateDelay.ts
@@ -1,16 +1,17 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
+
import { useEffect, useRef, useState } from 'react';
export function useStateDelay(state: boolean, delay: number, callback?: () => void): boolean {
const [delayedState, setState] = useState(state);
const callbackRef = useRef(callback);
- const actualStateRef = useRef(null);
+ const actualStateRef = useRef | null>(null);
callbackRef.current = callback;
diff --git a/webapp/packages/core-blocks/tsconfig.json b/webapp/packages/core-blocks/tsconfig.json
index acbe8e5d15..e08a494971 100644
--- a/webapp/packages/core-blocks/tsconfig.json
+++ b/webapp/packages/core-blocks/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -59,7 +59,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-bootstrap/package.json b/webapp/packages/core-bootstrap/package.json
index 9d26d054f0..bed2d3d8bb 100644
--- a/webapp/packages/core-bootstrap/package.json
+++ b/webapp/packages/core-bootstrap/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-bootstrap/tsconfig.json b/webapp/packages/core-bootstrap/tsconfig.json
index 2be3358be5..f7fb79f6be 100644
--- a/webapp/packages/core-bootstrap/tsconfig.json
+++ b/webapp/packages/core-bootstrap/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -125,7 +125,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-browser-cookies/package.json b/webapp/packages/core-browser-cookies/package.json
index 115b42ae57..a34da9fd30 100644
--- a/webapp/packages/core-browser-cookies/package.json
+++ b/webapp/packages/core-browser-cookies/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-browser-cookies/tsconfig.json b/webapp/packages/core-browser-cookies/tsconfig.json
index 813d72f7b1..ef0c7c365b 100644
--- a/webapp/packages/core-browser-cookies/tsconfig.json
+++ b/webapp/packages/core-browser-cookies/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -26,7 +26,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-browser-settings/package.json b/webapp/packages/core-browser-settings/package.json
index 5bfb443f9c..4f965e1dc4 100644
--- a/webapp/packages/core-browser-settings/package.json
+++ b/webapp/packages/core-browser-settings/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -29,7 +29,7 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-browser-settings/src/BrowserSettingsService.test.ts b/webapp/packages/core-browser-settings/src/BrowserSettingsService.test.ts
index a532879178..d65429e145 100644
--- a/webapp/packages/core-browser-settings/src/BrowserSettingsService.test.ts
+++ b/webapp/packages/core-browser-settings/src/BrowserSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreClientActivityManifest } from '@cloudbeaver/core-client-activity';
// import { coreLocalizationManifest } from '@cloudbeaver/core-localization';
@@ -72,3 +72,5 @@
// expect(settings.disabled).toBe(testValueB);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('BrowserSettingsService', () => {});
diff --git a/webapp/packages/core-browser-settings/tsconfig.json b/webapp/packages/core-browser-settings/tsconfig.json
index fd5cece7fe..28a609c850 100644
--- a/webapp/packages/core-browser-settings/tsconfig.json
+++ b/webapp/packages/core-browser-settings/tsconfig.json
@@ -2,13 +2,12 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
],
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
diff --git a/webapp/packages/core-browser/package.json b/webapp/packages/core-browser/package.json
index f801ad8bd5..81bd3fd2c6 100644
--- a/webapp/packages/core-browser/package.json
+++ b/webapp/packages/core-browser/package.json
@@ -2,7 +2,7 @@
"name": "@cloudbeaver/core-browser",
"type": "module",
"sideEffects": [
- "dist/service-worker.js",
+ "lib/service-worker.js",
"src/**/*.css",
"src/**/*.scss",
"public/**/*"
@@ -11,12 +11,12 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js",
- "./*": "./dist/*.js"
+ ".": "./lib/index.js",
+ "./*": "./lib/*.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-browser/tsconfig.json b/webapp/packages/core-browser/tsconfig.json
index c1bde30897..0eb06f961d 100644
--- a/webapp/packages/core-browser/tsconfig.json
+++ b/webapp/packages/core-browser/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-cli/_templates/plugin/new/package.json.ejs.t b/webapp/packages/core-cli/_templates/plugin/new/package.json.ejs.t
index 0472367752..6faf882bae 100644
--- a/webapp/packages/core-cli/_templates/plugin/new/package.json.ejs.t
+++ b/webapp/packages/core-cli/_templates/plugin/new/package.json.ejs.t
@@ -13,11 +13,11 @@ to: <%= name %>/package.json
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-cli/_templates/plugin/new/tsconfig.json.ejs.t b/webapp/packages/core-cli/_templates/plugin/new/tsconfig.json.ejs.t
index b840b29f03..d4b235e9ae 100644
--- a/webapp/packages/core-cli/_templates/plugin/new/tsconfig.json.ejs.t
+++ b/webapp/packages/core-cli/_templates/plugin/new/tsconfig.json.ejs.t
@@ -6,8 +6,8 @@ to: <%= name %>/tsconfig.json
"extends": "<%= isEE ? '../../../../cloudbeaver/webapp/tsconfig.base.json' : '../../tsconfig.base.json' %>",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true,
},
"references": [
@@ -24,7 +24,6 @@ to: <%= name %>/tsconfig.json
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-cli/bin/test.js b/webapp/packages/core-cli/bin/test.js
index 33c285d8ab..1054b91a63 100755
--- a/webapp/packages/core-cli/bin/test.js
+++ b/webapp/packages/core-cli/bin/test.js
@@ -6,16 +6,22 @@
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-/* eslint-disable @typescript-eslint/no-var-requires */
-// import jest from 'jest';
-// import { fileURLToPath } from 'node:url';
+import { fileURLToPath } from 'node:url';
+import { startVitest, parseCLI } from 'vitest/node';
+
process.title = 'core-test';
-// if (process.env.NODE_ENV == null) {
-// process.env.NODE_ENV = 'test';
-// }
+if (process.env.VITEST == null) {
+ process.env.VITEST = 'test';
+}
+
+const { filter, options } = parseCLI(['vitest', ...process.argv.slice(2)]);
+const configFile = fileURLToPath(new URL('../configs/vitest.config.ts', import.meta.url));
-// const argv = [...process.argv.slice(2, process.argv.length), '--config', fileURLToPath(import.meta.resolve('../configs/jest.config.js'))];
+const vitest = await startVitest(process.env.VITEST, filter, {
+ config: configFile,
+ ...options,
+});
-// jest.run(argv);
+await vitest.close();
diff --git a/webapp/packages/core-cli/configs/__mocks__/fileMock.js b/webapp/packages/core-cli/configs/__mocks__/fileMock.js
index 7ff01a6911..20fac1acc4 100644
--- a/webapp/packages/core-cli/configs/__mocks__/fileMock.js
+++ b/webapp/packages/core-cli/configs/__mocks__/fileMock.js
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-cli/configs/jest.config.js b/webapp/packages/core-cli/configs/jest.config.js
deleted file mode 100644
index 29c92fdc8e..0000000000
--- a/webapp/packages/core-cli/configs/jest.config.js
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
- *
- * Licensed under the Apache License, Version 2.0.
- * you may not use this file except in compliance with the License.
- */
-// https://jestjs.io/docs/configuration
-const path = require('path');
-
-/** @type {import('ts-jest').JestConfigWithTsJest} */
-module.exports = {
- testEnvironment: require.resolve('../tests/test.environment.js'),
- rootDir: path.resolve('.'),
- moduleFileExtensions: ['js', 'jsx', 'json'],
- testMatch: [
- // unix
- '/packages/*/dist/**/?(*.)+(spec|test).js?(x)',
- '/dist/**/?(*.)+(spec|test).js?(x)',
- // windows
- '\\packages\\*\\dist\\**?(*.)+(spec|test).js?(x)',
- '\\dist\\**?(*.)+(spec|test).js?(x)',
- ],
- transformIgnorePatterns: [
- '\\.pnp\\.[^\\/]+$',
- 'node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)',
- '/node_modules/(?!(uuid|go-split|@react-dnd|react-dnd-html5-backend|@timohausmann|react-dnd|dnd-core|@cloudbeaver))(.*)',
- ],
- testPathIgnorePatterns: ['/node_modules/'],
- moduleNameMapper: {
- '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': require.resolve('./__mocks__/fileMock.js'),
- '\\.(css|scss|less)$': require.resolve('./__mocks__/styleMock.js'),
- // '^dexie$': require.resolve('dexie'),
- },
- // passWithNoTests: true,
- setupFiles: [require.resolve('fake-indexeddb/auto'), require.resolve('../tests/setup.js')],
- setupFilesAfterEnv: ['@testing-library/jest-dom/jest-globals'],
- transform: {
- '\\.jsx?$': [require.resolve('@swc/jest')],
- },
- testEnvironmentOptions: {
- // This will force JSDOM to use the default export condition when importing msw/node, resulting in correct imports.
- // https://mswjs.io/docs/migrations/1.x-to-2.x#cannot-find-module-mswnode-jsdom
- customExportConditions: [''],
- },
- injectGlobals: false,
-};
diff --git a/webapp/packages/core-cli/configs/vitest.config.ts b/webapp/packages/core-cli/configs/vitest.config.ts
new file mode 100644
index 0000000000..3553a90210
--- /dev/null
+++ b/webapp/packages/core-cli/configs/vitest.config.ts
@@ -0,0 +1,38 @@
+/*
+ * CloudBeaver - Cloud Database Manager
+ * Copyright (C) 2020-2025 DBeaver Corp and others
+ *
+ * Licensed under the Apache License, Version 2.0.
+ * you may not use this file except in compliance with the License.
+ */
+import { defineConfig } from 'vitest/config';
+import path from 'path';
+
+export default defineConfig({
+ test: {
+ environment: 'happy-dom',
+ root: path.resolve('.'),
+ include: ['**/lib/**/*.test.js'],
+ exclude: ['node_modules/**'],
+ setupFiles: [path.resolve(__dirname, './vitest.setup.ts')],
+ alias: [
+ {
+ find: /.*.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$/,
+ replacement: path.resolve(__dirname, './__mocks__/fileMock.js'),
+ },
+ {
+ find: /.*.(css|scss|less)$/,
+ replacement: path.resolve(__dirname, './__mocks__/styleMock.js'),
+ },
+ ],
+ isolate: false,
+ css: false,
+ watch: false,
+ environmentOptions: {
+ // This will force JSDOM to use the default export condition when importing msw/node, resulting in correct imports.
+ // https://mswjs.io/docs/migrations/1.x-to-2.x#cannot-find-module-mswnode-jsdom
+ customExportConditions: [''],
+ },
+ },
+ esbuild: false,
+});
diff --git a/webapp/packages/core-cli/configs/vitest.setup.ts b/webapp/packages/core-cli/configs/vitest.setup.ts
new file mode 100644
index 0000000000..001da04442
--- /dev/null
+++ b/webapp/packages/core-cli/configs/vitest.setup.ts
@@ -0,0 +1,34 @@
+/*
+ * CloudBeaver - Cloud Database Manager
+ * Copyright (C) 2020-2025 DBeaver Corp and others
+ *
+ * Licensed under the Apache License, Version 2.0.
+ * you may not use this file except in compliance with the License.
+ */
+import { afterEach, beforeEach, vi } from 'vitest';
+import { cleanup } from '@testing-library/react';
+import '@testing-library/jest-dom/vitest';
+
+// different machine has its own timezones and some tests can fail because of it
+process.env.TZ = 'UTC';
+
+function resetMocks() {
+ vi.clearAllMocks();
+ vi.clearAllTimers();
+ vi.useRealTimers();
+}
+
+function resetDocument() {
+ document.body.innerHTML = '';
+ document.body.className = '';
+ cleanup();
+}
+
+beforeEach(() => {
+ resetMocks();
+});
+
+afterEach(() => {
+ resetMocks();
+ resetDocument();
+});
diff --git a/webapp/packages/core-cli/package.json b/webapp/packages/core-cli/package.json
index a8a3e3ccc9..f5d8940414 100644
--- a/webapp/packages/core-cli/package.json
+++ b/webapp/packages/core-cli/package.json
@@ -24,11 +24,11 @@
"bin": {
"core-cli-add-plugin": "./bin/add-plugin.js",
"core-cli-analyzer": "./bin/analyzer.js",
- "core-cli-check-license": "./dist/cli/license-check.js",
+ "core-cli-check-license": "./lib/cli/license-check.js",
"core-cli-dependency-graph": "./bin/dependency-graph.js",
"core-cli-set-version": "./bin/set-version.mjs",
"core-cli-test": "./bin/test.js",
- "core-cli-validate-dependencies": "./dist/cli/validate-dependencies.js"
+ "core-cli-validate-dependencies": "./lib/cli/validate-dependencies.js"
},
"scripts": {
"build": "tsc -b",
@@ -44,19 +44,18 @@
"devDependencies": {
"@cloudbeaver/tsconfig": "workspace:*",
"@swc/core": "^1",
- "@swc/jest": "^0",
"@testing-library/jest-dom": "^6",
+ "@testing-library/react": "^14",
"@types/js-yaml": "^4",
"@types/node": "^20",
"enquirer": "^2",
"execa": "^9",
"fake-indexeddb": "^6",
"glob": "^11",
+ "happy-dom": "^17",
"hygen": "^6",
- "jest": "^29",
- "jest-environment-jsdom": "^29",
"js-yaml": "^4",
"typescript": "^5",
- "upath": "^2"
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-cli/src/dependency-validator/validateDependencies.ts b/webapp/packages/core-cli/src/dependency-validator/validateDependencies.ts
index 1f8234321a..5d2aa677dd 100644
--- a/webapp/packages/core-cli/src/dependency-validator/validateDependencies.ts
+++ b/webapp/packages/core-cli/src/dependency-validator/validateDependencies.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
@@ -76,10 +76,6 @@ export function validateDependencies(currentPackageRoot: string) {
devDependencies.add('typescript-plugin-css-modules');
}
- if (isTestFile) {
- devDependencies.add('@types/jest');
- }
-
if (isTSXFileRegex) {
if (isTestFile) {
devDependencies.add('react');
diff --git a/webapp/packages/core-cli/tests/test.environment.js b/webapp/packages/core-cli/tests/test.environment.js
deleted file mode 100644
index 2f62be41dc..0000000000
--- a/webapp/packages/core-cli/tests/test.environment.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
- *
- * Licensed under the Apache License, Version 2.0.
- * you may not use this file except in compliance with the License.
- */
-import { TransformStream } from 'node:stream/web';
-
-const Environment = require('jest-environment-jsdom').default;
-
-/**
- JSDOM does not have an implementation for TextDecoder / TextEncoder / TransformStream present on their globals
- and therefore not only are they not found, but you can't add them without access to their global context inside the VM.
- MSW 2.0 related issue.
-*/
-module.exports = class CustomTestEnvironment extends Environment {
- async setup() {
- await super.setup();
- this.global.TextEncoder = TextEncoder;
- this.global.TextDecoder = TextDecoder;
- this.global.Response = Response;
- this.global.Request = Request;
- this.global.TransformStream = TransformStream;
- // FIXME https://github.com/jsdom/jsdom/issues/3363
- this.global.structuredClone = structuredClone;
-
- // different machine has its own timezones and some tests can fail because of it
- process.env.TZ = 'UTC';
- }
-};
diff --git a/webapp/packages/core-cli/tsconfig.json b/webapp/packages/core-cli/tsconfig.json
index 70f13c0ee6..b9db2571aa 100644
--- a/webapp/packages/core-cli/tsconfig.json
+++ b/webapp/packages/core-cli/tsconfig.json
@@ -2,10 +2,14 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
+ "types": [
+ "vitest/globals",
+ "@testing-library/jest-dom"
+ ],
"include": [
"__custom_mocks__/**/*",
"src/**/*",
@@ -15,7 +19,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-client-activity/package.json b/webapp/packages/core-client-activity/package.json
index 6c94b0bbd2..428894327a 100644
--- a/webapp/packages/core-client-activity/package.json
+++ b/webapp/packages/core-client-activity/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies",
"test": "core-cli-test"
@@ -28,8 +28,7 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-client-activity/src/ClientActivityService.test.ts b/webapp/packages/core-client-activity/src/ClientActivityService.test.ts
index 6860fafd66..9186158668 100644
--- a/webapp/packages/core-client-activity/src/ClientActivityService.test.ts
+++ b/webapp/packages/core-client-activity/src/ClientActivityService.test.ts
@@ -1,29 +1,40 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest } from 'vitest';
import { ClientActivityService, INACTIVE_PERIOD_TIME } from './ClientActivityService.js';
-jest.useFakeTimers();
+vitest.mock('@cloudbeaver/core-executor', () => ({
+ Executor: vitest.fn(() => ({
+ execute: vitest.fn(),
+ addHandler: vitest.fn(),
+ removeHandler: vitest.fn(),
+ addPostHandler: vitest.fn(),
+ removePostHandler: vitest.fn(),
+ before: vitest.fn(),
+ removeBefore: vitest.fn(),
+ next: vitest.fn(),
+ })),
+}));
describe('ClientActivityService', () => {
let clientActivityService: ClientActivityService;
beforeEach(() => {
+ vitest.useFakeTimers();
clientActivityService = new ClientActivityService();
- jest.spyOn(global, 'setTimeout');
- jest.spyOn(global, 'clearTimeout');
+ vitest.spyOn(globalThis, 'setTimeout');
+ vitest.spyOn(globalThis, 'clearTimeout');
});
afterEach(() => {
- jest.clearAllTimers();
- jest.restoreAllMocks();
+ vitest.useRealTimers();
});
it('should initialize with isActive set to false', () => {
@@ -39,7 +50,7 @@ describe('ClientActivityService', () => {
clientActivityService.updateActivity();
expect(clientActivityService.isActive).toBe(true);
- jest.advanceTimersByTime(INACTIVE_PERIOD_TIME);
+ vitest.advanceTimersByTime(INACTIVE_PERIOD_TIME);
expect(clientActivityService.isActive).toBe(false);
});
@@ -48,7 +59,7 @@ describe('ClientActivityService', () => {
clientActivityService.updateActivity();
expect(setTimeout).toHaveBeenCalledTimes(1);
- jest.advanceTimersByTime(Math.random() * INACTIVE_PERIOD_TIME - 1);
+ vitest.advanceTimersByTime(Math.random() * INACTIVE_PERIOD_TIME - 1);
clientActivityService.updateActivity();
expect(clearTimeout).toHaveBeenCalledTimes(1);
@@ -58,7 +69,7 @@ describe('ClientActivityService', () => {
it('should clear timer and reset activity when resetActivity is called', () => {
clientActivityService.updateActivity();
- jest.advanceTimersByTime(Math.random() * INACTIVE_PERIOD_TIME - 1);
+ vitest.advanceTimersByTime(Math.random() * INACTIVE_PERIOD_TIME - 1);
clientActivityService.resetActivity();
@@ -67,12 +78,12 @@ describe('ClientActivityService', () => {
});
it('should call onActiveStateChange executor with correct value', () => {
- const onActiveStateChangeSpy = jest.spyOn(clientActivityService.onActiveStateChange, 'execute');
+ const onActiveStateChangeSpy = vitest.spyOn(clientActivityService.onActiveStateChange, 'execute');
clientActivityService.updateActivity();
expect(onActiveStateChangeSpy).toHaveBeenCalledWith(true);
- jest.advanceTimersByTime(INACTIVE_PERIOD_TIME);
+ vitest.advanceTimersByTime(INACTIVE_PERIOD_TIME);
expect(onActiveStateChangeSpy).toHaveBeenCalledWith(false);
});
});
diff --git a/webapp/packages/core-client-activity/tsconfig.json b/webapp/packages/core-client-activity/tsconfig.json
index 7eac136bbd..42de6c4ea7 100644
--- a/webapp/packages/core-client-activity/tsconfig.json
+++ b/webapp/packages/core-client-activity/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -26,7 +26,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-connections/package.json b/webapp/packages/core-connections/package.json
index 7e3a102abf..b1a5ac57bb 100644
--- a/webapp/packages/core-connections/package.json
+++ b/webapp/packages/core-connections/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-connections/src/ConnectionInfoResource.ts b/webapp/packages/core-connections/src/ConnectionInfoResource.ts
index d1c75ea399..8782f69552 100644
--- a/webapp/packages/core-connections/src/ConnectionInfoResource.ts
+++ b/webapp/packages/core-connections/src/ConnectionInfoResource.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-connections/src/ConnectionsManagerService.ts b/webapp/packages/core-connections/src/ConnectionsManagerService.ts
index 400995d7f8..3c2d5538af 100644
--- a/webapp/packages/core-connections/src/ConnectionsManagerService.ts
+++ b/webapp/packages/core-connections/src/ConnectionsManagerService.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-connections/src/DataContexts/DATA_CONTEXT_CONNECTION.ts b/webapp/packages/core-connections/src/DataContexts/DATA_CONTEXT_CONNECTION.ts
index 3e81aba0e1..862d6996c6 100644
--- a/webapp/packages/core-connections/src/DataContexts/DATA_CONTEXT_CONNECTION.ts
+++ b/webapp/packages/core-connections/src/DataContexts/DATA_CONTEXT_CONNECTION.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-connections/src/NavTree/NavNodeExtensionsService.ts b/webapp/packages/core-connections/src/NavTree/NavNodeExtensionsService.ts
index 9763c28975..1a3f1b31f6 100644
--- a/webapp/packages/core-connections/src/NavTree/NavNodeExtensionsService.ts
+++ b/webapp/packages/core-connections/src/NavTree/NavNodeExtensionsService.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-connections/src/index.ts b/webapp/packages/core-connections/src/index.ts
index 9684cd153c..2671981792 100644
--- a/webapp/packages/core-connections/src/index.ts
+++ b/webapp/packages/core-connections/src/index.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-connections/src/manifest.ts b/webapp/packages/core-connections/src/manifest.ts
index 1ee195cb3f..16c8bfde8f 100644
--- a/webapp/packages/core-connections/src/manifest.ts
+++ b/webapp/packages/core-connections/src/manifest.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-connections/tsconfig.json b/webapp/packages/core-connections/tsconfig.json
index 7cb58dbd69..0939e9aefa 100644
--- a/webapp/packages/core-connections/tsconfig.json
+++ b/webapp/packages/core-connections/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -68,7 +68,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-data-context/package.json b/webapp/packages/core-data-context/package.json
index 3973c1ce19..be78685337 100644
--- a/webapp/packages/core-data-context/package.json
+++ b/webapp/packages/core-data-context/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-data-context/tsconfig.json b/webapp/packages/core-data-context/tsconfig.json
index 272300ffa1..e109a86c53 100644
--- a/webapp/packages/core-data-context/tsconfig.json
+++ b/webapp/packages/core-data-context/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -26,7 +26,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-di/package.json b/webapp/packages/core-di/package.json
index 4d1b66c8b7..a5e6a20c4a 100644
--- a/webapp/packages/core-di/package.json
+++ b/webapp/packages/core-di/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -30,9 +30,8 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
"@types/react": "^19",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-di/src/__tests__/app-init/TestBootstrap.ts b/webapp/packages/core-di/src/__tests__/app-init/TestBootstrap.ts
index 96b33c3dd7..a0f06c0df9 100644
--- a/webapp/packages/core-di/src/__tests__/app-init/TestBootstrap.ts
+++ b/webapp/packages/core-di/src/__tests__/app-init/TestBootstrap.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
@@ -28,11 +28,9 @@ export class TestBootstrap extends Bootstrap {
override async load(): Promise {
await new Promise(resolve => {
- setTimeout(() => {
- this.sum = this.testService.sum(1, 2);
- this.loaded = true;
- resolve(undefined);
- }, 5);
+ this.sum = this.testService.sum(1, 2);
+ this.loaded = true;
+ resolve(undefined);
});
}
}
diff --git a/webapp/packages/core-di/src/__tests__/app-init/app-init.test.ts b/webapp/packages/core-di/src/__tests__/app-init/app-init.test.ts
index 15341eb4fa..ae438dac88 100644
--- a/webapp/packages/core-di/src/__tests__/app-init/app-init.test.ts
+++ b/webapp/packages/core-di/src/__tests__/app-init/app-init.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { expect, test } from '@jest/globals';
+import { expect, test } from 'vitest';
import { App } from '../../App.js';
import { manifest } from './manifest.js';
diff --git a/webapp/packages/core-di/tsconfig.json b/webapp/packages/core-di/tsconfig.json
index 74e5989adc..1b866843c2 100644
--- a/webapp/packages/core-di/tsconfig.json
+++ b/webapp/packages/core-di/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -23,7 +23,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-dialogs/package.json b/webapp/packages/core-dialogs/package.json
index ed2dcf887d..5493f6e4bd 100644
--- a/webapp/packages/core-dialogs/package.json
+++ b/webapp/packages/core-dialogs/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-dialogs/tsconfig.json b/webapp/packages/core-dialogs/tsconfig.json
index 272300ffa1..e109a86c53 100644
--- a/webapp/packages/core-dialogs/tsconfig.json
+++ b/webapp/packages/core-dialogs/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -26,7 +26,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-events/package.json b/webapp/packages/core-events/package.json
index 68fefc732e..ee35ee0e18 100644
--- a/webapp/packages/core-events/package.json
+++ b/webapp/packages/core-events/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -32,7 +32,7 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-events/src/EventsSettingsService.test.ts b/webapp/packages/core-events/src/EventsSettingsService.test.ts
index d72adc6810..101549ba53 100644
--- a/webapp/packages/core-events/src/EventsSettingsService.test.ts
+++ b/webapp/packages/core-events/src/EventsSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreClientActivityManifest } from '@cloudbeaver/core-client-activity';
// import { coreLocalizationManifest } from '@cloudbeaver/core-localization';
@@ -73,3 +73,5 @@
// expect(settings.maxPersistentAllow).toBe(2);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('EventsSettingsService', () => {});
diff --git a/webapp/packages/core-events/tsconfig.json b/webapp/packages/core-events/tsconfig.json
index b8e8146b3c..74080a0879 100644
--- a/webapp/packages/core-events/tsconfig.json
+++ b/webapp/packages/core-events/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -38,7 +38,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-executor/package.json b/webapp/packages/core-executor/package.json
index 78328cf342..3d9bf5b2a4 100644
--- a/webapp/packages/core-executor/package.json
+++ b/webapp/packages/core-executor/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-executor/tsconfig.json b/webapp/packages/core-executor/tsconfig.json
index 9a62b60153..b11e0d4e65 100644
--- a/webapp/packages/core-executor/tsconfig.json
+++ b/webapp/packages/core-executor/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -20,7 +20,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-extensions/package.json b/webapp/packages/core-extensions/package.json
index 85618fc0ca..dcf9e76bfd 100644
--- a/webapp/packages/core-extensions/package.json
+++ b/webapp/packages/core-extensions/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-extensions/tsconfig.json b/webapp/packages/core-extensions/tsconfig.json
index 9a62b60153..b11e0d4e65 100644
--- a/webapp/packages/core-extensions/tsconfig.json
+++ b/webapp/packages/core-extensions/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -20,7 +20,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-links/package.json b/webapp/packages/core-links/package.json
index 39c0b48750..a1797b9058 100644
--- a/webapp/packages/core-links/package.json
+++ b/webapp/packages/core-links/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-links/tsconfig.json b/webapp/packages/core-links/tsconfig.json
index dd9fb34ea9..9ec23da0a4 100644
--- a/webapp/packages/core-links/tsconfig.json
+++ b/webapp/packages/core-links/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -23,7 +23,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-localization/package.json b/webapp/packages/core-localization/package.json
index 8fdc0a84e7..1277b5ef1f 100644
--- a/webapp/packages/core-localization/package.json
+++ b/webapp/packages/core-localization/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -28,8 +28,7 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-localization/src/LocalizationService.test.ts b/webapp/packages/core-localization/src/LocalizationService.test.ts
index 11df333449..7b4f8239e3 100644
--- a/webapp/packages/core-localization/src/LocalizationService.test.ts
+++ b/webapp/packages/core-localization/src/LocalizationService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeEach, describe, expect, it } from '@jest/globals';
+import { beforeEach, describe, expect, it } from 'vitest';
import { DEFAULT_LOCALE } from './DEFAULT_LOCALE.js';
import { type ILocale } from './ILocale.js';
diff --git a/webapp/packages/core-localization/tsconfig.json b/webapp/packages/core-localization/tsconfig.json
index 7eac136bbd..42de6c4ea7 100644
--- a/webapp/packages/core-localization/tsconfig.json
+++ b/webapp/packages/core-localization/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -26,7 +26,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-navigation-tree/package.json b/webapp/packages/core-navigation-tree/package.json
index 8ed6817799..ae0866ec86 100644
--- a/webapp/packages/core-navigation-tree/package.json
+++ b/webapp/packages/core-navigation-tree/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -38,9 +38,9 @@
},
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
+ "@cloudbeaver/tests-runner": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-navigation-tree/src/NavTreeSettingsService.test.ts b/webapp/packages/core-navigation-tree/src/NavTreeSettingsService.test.ts
index 14baf31d9a..10a52db757 100644
--- a/webapp/packages/core-navigation-tree/src/NavTreeSettingsService.test.ts
+++ b/webapp/packages/core-navigation-tree/src/NavTreeSettingsService.test.ts
@@ -1,11 +1,12 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+
+import { describe } from 'vitest';
// import { coreAuthenticationManifest } from '@cloudbeaver/core-authentication';
// import { mockAuthentication } from '@cloudbeaver/core-authentication/__custom_mocks__/mockAuthentication.js';
@@ -94,3 +95,5 @@
// expect(settings.deleting).toBe(false);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('NavTreeSettingsService', () => {});
diff --git a/webapp/packages/core-navigation-tree/src/NodesManager/DBObjectResource.ts b/webapp/packages/core-navigation-tree/src/NodesManager/DBObjectResource.ts
index 8e04a8e5ef..ff9fc8394d 100644
--- a/webapp/packages/core-navigation-tree/src/NodesManager/DBObjectResource.ts
+++ b/webapp/packages/core-navigation-tree/src/NodesManager/DBObjectResource.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-navigation-tree/src/NodesManager/NodeManagerUtils.test.ts b/webapp/packages/core-navigation-tree/src/NodesManager/NodeManagerUtils.test.ts
index 78b48614d2..2adfc104b7 100644
--- a/webapp/packages/core-navigation-tree/src/NodesManager/NodeManagerUtils.test.ts
+++ b/webapp/packages/core-navigation-tree/src/NodesManager/NodeManagerUtils.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { NodeManagerUtils } from './NodeManagerUtils.js';
diff --git a/webapp/packages/core-navigation-tree/src/NodesManager/NodeManagerUtils.ts b/webapp/packages/core-navigation-tree/src/NodesManager/NodeManagerUtils.ts
index d6b895fb5e..32492e9a91 100644
--- a/webapp/packages/core-navigation-tree/src/NodesManager/NodeManagerUtils.ts
+++ b/webapp/packages/core-navigation-tree/src/NodesManager/NodeManagerUtils.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/core-navigation-tree/tsconfig.json b/webapp/packages/core-navigation-tree/tsconfig.json
index 11f241bd59..95ba7bb986 100644
--- a/webapp/packages/core-navigation-tree/tsconfig.json
+++ b/webapp/packages/core-navigation-tree/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -48,6 +48,9 @@
},
{
"path": "../core-utils"
+ },
+ {
+ "path": "../tests-runner"
}
],
"include": [
@@ -60,6 +63,6 @@
"exclude": [
"**/node_modules",
"lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-notifications/package.json b/webapp/packages/core-notifications/package.json
index 523c061233..55aebc552f 100644
--- a/webapp/packages/core-notifications/package.json
+++ b/webapp/packages/core-notifications/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-notifications/tsconfig.json b/webapp/packages/core-notifications/tsconfig.json
index 701523ede2..40adf4cbe0 100644
--- a/webapp/packages/core-notifications/tsconfig.json
+++ b/webapp/packages/core-notifications/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-product/package.json b/webapp/packages/core-product/package.json
index 720dedeb8d..30326d4d64 100644
--- a/webapp/packages/core-product/package.json
+++ b/webapp/packages/core-product/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-product/tsconfig.json b/webapp/packages/core-product/tsconfig.json
index c1db601a9a..641c88d87e 100644
--- a/webapp/packages/core-product/tsconfig.json
+++ b/webapp/packages/core-product/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -26,7 +26,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-projects/package.json b/webapp/packages/core-projects/package.json
index 86d0824445..176cae42b3 100644
--- a/webapp/packages/core-projects/package.json
+++ b/webapp/packages/core-projects/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-projects/tsconfig.json b/webapp/packages/core-projects/tsconfig.json
index a62650261c..b0612a0a42 100644
--- a/webapp/packages/core-projects/tsconfig.json
+++ b/webapp/packages/core-projects/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -50,7 +50,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-resource-manager/package.json b/webapp/packages/core-resource-manager/package.json
index 00190f8af2..9277c9e365 100644
--- a/webapp/packages/core-resource-manager/package.json
+++ b/webapp/packages/core-resource-manager/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-resource-manager/tsconfig.json b/webapp/packages/core-resource-manager/tsconfig.json
index 0b6cce7c9e..0d23bbc81b 100644
--- a/webapp/packages/core-resource-manager/tsconfig.json
+++ b/webapp/packages/core-resource-manager/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -50,7 +50,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-resource/package.json b/webapp/packages/core-resource/package.json
index e45ae1e80a..0f5a87cda0 100644
--- a/webapp/packages/core-resource/package.json
+++ b/webapp/packages/core-resource/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -29,9 +29,8 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
"mobx": "^6",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-resource/src/Resource/CachedDataResource.test.ts b/webapp/packages/core-resource/src/Resource/CachedDataResource.test.ts
index a44e74d617..3fedee60ba 100644
--- a/webapp/packages/core-resource/src/Resource/CachedDataResource.test.ts
+++ b/webapp/packages/core-resource/src/Resource/CachedDataResource.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeEach, describe, expect, jest, test } from '@jest/globals';
+import { beforeEach, describe, expect, vitest, test } from 'vitest';
import { CachedDataResource } from './CachedDataResource.js';
@@ -27,11 +27,7 @@ const DATA_MOCK_GETTER: () => IEntityData[] = () => [
];
async function fetchMock(): Promise {
- return new Promise(resolve => {
- setTimeout(() => {
- resolve(DATA_MOCK_GETTER());
- }, 1);
- });
+ return Promise.resolve(DATA_MOCK_GETTER());
}
class TestDataResource extends CachedDataResource {
@@ -71,7 +67,7 @@ describe('CachedDataResource', () => {
});
test('should run onDataOutdated handlers on data outdate', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
dataResource.onDataOutdated.addHandler(handler);
dataResource.markOutdated();
@@ -80,7 +76,7 @@ describe('CachedDataResource', () => {
});
test('should run onDataUpdate handlers on data update', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
dataResource.onDataUpdate.addHandler(handler);
dataResource.dataUpdate();
diff --git a/webapp/packages/core-resource/src/Resource/CachedMapResource.test.ts b/webapp/packages/core-resource/src/Resource/CachedMapResource.test.ts
index 740c07088d..e98200cac3 100644
--- a/webapp/packages/core-resource/src/Resource/CachedMapResource.test.ts
+++ b/webapp/packages/core-resource/src/Resource/CachedMapResource.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeEach, describe, expect, jest, test } from '@jest/globals';
+import { beforeEach, describe, expect, vitest, test } from 'vitest';
import { toJS } from 'mobx';
import { CachedMapResource } from './CachedMapResource.js';
@@ -41,20 +41,18 @@ async function fetchMock(key: ResourceKey | undefined): Promise {
- setTimeout(() => {
- if (key) {
- if (key === ERROR_ITEM_ID) {
- reject(new Error(TEST_ERROR_MESSAGE));
- }
-
- const item = data.find(d => d.id === key);
- if (item) {
- resolve([item]);
- }
- } else {
- resolve(data);
+ if (key) {
+ if (key === ERROR_ITEM_ID) {
+ reject(new Error(TEST_ERROR_MESSAGE));
}
- }, 1);
+
+ const item = data.find(d => d.id === key);
+ if (item) {
+ resolve([item]);
+ }
+ } else {
+ resolve(data);
+ }
});
}
@@ -173,7 +171,7 @@ describe('CachedMapResource', () => {
});
test('should run onDataOutdated handlers on data outdate', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
mapResource.set('key1', { id: 'key1', value: 1 });
mapResource.set('key2', { id: 'key2', value: 2 });
@@ -188,7 +186,7 @@ describe('CachedMapResource', () => {
});
test('should run onDataUpdate handlers on data update', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
mapResource.set('key1', { id: 'key1', value: 1 });
mapResource.set('key2', { id: 'key2', value: 2 });
@@ -203,7 +201,7 @@ describe('CachedMapResource', () => {
});
test('should run onItemDelete handlers on data delete', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
mapResource.set('key1', { id: 'key1', value: 1 });
mapResource.set('key2', { id: 'key2', value: 2 });
@@ -218,7 +216,7 @@ describe('CachedMapResource', () => {
});
test('should run onItemUpdate handlers on item update', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
mapResource.set('key1', { id: 'key1', value: 1 });
mapResource.set('key2', { id: 'key2', value: 2 });
@@ -233,7 +231,7 @@ describe('CachedMapResource', () => {
});
test('should run onDataError handlers on data error', async () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
mapResource.set('key1', { id: 'key1', value: 1 });
mapResource.set('key2', { id: 'key2', value: 2 });
diff --git a/webapp/packages/core-resource/src/Resource/CachedResourceOffsetPageKeys.test.ts b/webapp/packages/core-resource/src/Resource/CachedResourceOffsetPageKeys.test.ts
index 4c9a932d61..d4edb92c25 100644
--- a/webapp/packages/core-resource/src/Resource/CachedResourceOffsetPageKeys.test.ts
+++ b/webapp/packages/core-resource/src/Resource/CachedResourceOffsetPageKeys.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { expandOffsetPageRange, getNextPageOffset, type ICachedResourceOffsetPage } from './CachedResourceOffsetPageKeys.js';
import type { IResourceOffsetPage } from './OffsetPagination/IResourceOffsetPage.js';
diff --git a/webapp/packages/core-resource/src/Resource/CachedTreeResource/CachedTreeResource.test.ts b/webapp/packages/core-resource/src/Resource/CachedTreeResource/CachedTreeResource.test.ts
index 204db4d44a..3a6d153a7a 100644
--- a/webapp/packages/core-resource/src/Resource/CachedTreeResource/CachedTreeResource.test.ts
+++ b/webapp/packages/core-resource/src/Resource/CachedTreeResource/CachedTreeResource.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeEach, describe, expect, jest, test } from '@jest/globals';
+import { beforeEach, describe, expect, vitest, test } from 'vitest';
import type { ResourceKey } from '../ResourceKey.js';
import { resourceKeyList } from '../ResourceKeyList.js';
@@ -72,7 +72,7 @@ describe('CachedMapResource', () => {
});
test('should run onDataOutdated handlers on data outdate', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
treeResource.set('root', { name: 'root' });
treeResource.set('root/level2', { name: 'level2' });
@@ -88,7 +88,7 @@ describe('CachedMapResource', () => {
});
test('CachedTreeChildrenKey alias should return key children of the node', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
treeResource.set('root', { name: 'root' });
treeResource.set('root/level2', { name: 'level2' });
@@ -123,7 +123,7 @@ describe('CachedMapResource', () => {
});
test('should run onItemDelete handlers on data delete', () => {
- const handler = jest.fn();
+ const handler = vitest.fn();
treeResource.set('root', { name: 'root' });
treeResource.set('root/level2', { name: 'level2' });
diff --git a/webapp/packages/core-resource/tsconfig.json b/webapp/packages/core-resource/tsconfig.json
index c1bde30897..0eb06f961d 100644
--- a/webapp/packages/core-resource/tsconfig.json
+++ b/webapp/packages/core-resource/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-root/package.json b/webapp/packages/core-root/package.json
index 4c5e7d0257..94dfd26492 100644
--- a/webapp/packages/core-root/package.json
+++ b/webapp/packages/core-root/package.json
@@ -10,12 +10,12 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js",
- "./*": "./dist/*"
+ ".": "./lib/index.js",
+ "./*": "./lib/*"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
@@ -39,9 +39,8 @@
"@cloudbeaver/core-sdk": "workspace:*",
"@cloudbeaver/tests-runner": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
"msw": "^2",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-root/src/__custom_mocks__/expectWebsocketClosedMessage.ts b/webapp/packages/core-root/src/__custom_mocks__/expectWebsocketClosedMessage.ts
index a6f23b3f42..84a40c748d 100644
--- a/webapp/packages/core-root/src/__custom_mocks__/expectWebsocketClosedMessage.ts
+++ b/webapp/packages/core-root/src/__custom_mocks__/expectWebsocketClosedMessage.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeAll, expect } from '@jest/globals';
+import { beforeAll, expect } from 'vitest';
import { addKnownInfo, consoleSpy } from '@cloudbeaver/tests-runner';
diff --git a/webapp/packages/core-root/src/__custom_mocks__/mockGraphQL.ts b/webapp/packages/core-root/src/__custom_mocks__/mockGraphQL.ts
index 19acc4bb27..a3df6ea588 100644
--- a/webapp/packages/core-root/src/__custom_mocks__/mockGraphQL.ts
+++ b/webapp/packages/core-root/src/__custom_mocks__/mockGraphQL.ts
@@ -1,13 +1,13 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterAll, afterEach, beforeAll } from '@jest/globals';
import type { GraphQLHandler } from 'msw';
import { setupServer } from 'msw/node';
+import { afterAll, afterEach, beforeAll } from 'vitest';
import { createWebsocketEndpoint } from './createWebsocketEndpoint.js';
diff --git a/webapp/packages/core-root/tsconfig.json b/webapp/packages/core-root/tsconfig.json
index 1da241fa32..392f62ff47 100644
--- a/webapp/packages/core-root/tsconfig.json
+++ b/webapp/packages/core-root/tsconfig.json
@@ -2,13 +2,12 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
],
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
diff --git a/webapp/packages/core-routing/package.json b/webapp/packages/core-routing/package.json
index be4bd7f67b..c0458dde01 100644
--- a/webapp/packages/core-routing/package.json
+++ b/webapp/packages/core-routing/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-routing/tsconfig.json b/webapp/packages/core-routing/tsconfig.json
index c1bde30897..0eb06f961d 100644
--- a/webapp/packages/core-routing/tsconfig.json
+++ b/webapp/packages/core-routing/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-sdk/package.json b/webapp/packages/core-sdk/package.json
index d0498028a6..aea09e43c1 100644
--- a/webapp/packages/core-sdk/package.json
+++ b/webapp/packages/core-sdk/package.json
@@ -10,7 +10,7 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"clean": "rimraf node_modules",
diff --git a/webapp/packages/core-sdk/tsconfig.json b/webapp/packages/core-sdk/tsconfig.json
index 35bf17f4e2..38a7679065 100644
--- a/webapp/packages/core-sdk/tsconfig.json
+++ b/webapp/packages/core-sdk/tsconfig.json
@@ -2,13 +2,12 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
],
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
diff --git a/webapp/packages/core-server-localization/package.json b/webapp/packages/core-server-localization/package.json
index 66d0c7290a..679bb56d22 100644
--- a/webapp/packages/core-server-localization/package.json
+++ b/webapp/packages/core-server-localization/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-server-localization/tsconfig.json b/webapp/packages/core-server-localization/tsconfig.json
index 3fa88de384..83a133efe7 100644
--- a/webapp/packages/core-server-localization/tsconfig.json
+++ b/webapp/packages/core-server-localization/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-session-localization/package.json b/webapp/packages/core-session-localization/package.json
index d1cd4625e4..38c82ca1f9 100644
--- a/webapp/packages/core-session-localization/package.json
+++ b/webapp/packages/core-session-localization/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-session-localization/tsconfig.json b/webapp/packages/core-session-localization/tsconfig.json
index 380bdeeb31..9ffafbdaea 100644
--- a/webapp/packages/core-session-localization/tsconfig.json
+++ b/webapp/packages/core-session-localization/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -32,7 +32,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-settings-localization/package.json b/webapp/packages/core-settings-localization/package.json
index 125056e871..623b027487 100644
--- a/webapp/packages/core-settings-localization/package.json
+++ b/webapp/packages/core-settings-localization/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -30,7 +30,7 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-settings-localization/src/SettingsLocalizationService.test.ts b/webapp/packages/core-settings-localization/src/SettingsLocalizationService.test.ts
index 225c56ee25..eb27a1bef8 100644
--- a/webapp/packages/core-settings-localization/src/SettingsLocalizationService.test.ts
+++ b/webapp/packages/core-settings-localization/src/SettingsLocalizationService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreClientActivityManifest } from '@cloudbeaver/core-client-activity';
// import { coreLocalizationManifest } from '@cloudbeaver/core-localization';
@@ -74,3 +74,5 @@
// expect(settings.language).toBe(deprecatedValue);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('SettingsLocalizationService', () => {});
diff --git a/webapp/packages/core-settings-localization/tsconfig.json b/webapp/packages/core-settings-localization/tsconfig.json
index 25e4aae6fd..d379d5b740 100644
--- a/webapp/packages/core-settings-localization/tsconfig.json
+++ b/webapp/packages/core-settings-localization/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -32,7 +32,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-settings-user/package.json b/webapp/packages/core-settings-user/package.json
index 9b963387d0..bcb5a89f42 100644
--- a/webapp/packages/core-settings-user/package.json
+++ b/webapp/packages/core-settings-user/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/core-settings-user/tsconfig.json b/webapp/packages/core-settings-user/tsconfig.json
index f92ccb81db..348df17b59 100644
--- a/webapp/packages/core-settings-user/tsconfig.json
+++ b/webapp/packages/core-settings-user/tsconfig.json
@@ -2,13 +2,12 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
],
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
diff --git a/webapp/packages/core-settings/package.json b/webapp/packages/core-settings/package.json
index 3e9363a240..a3a31d137b 100644
--- a/webapp/packages/core-settings/package.json
+++ b/webapp/packages/core-settings/package.json
@@ -10,12 +10,12 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js",
- "./*": "./dist/*"
+ ".": "./lib/index.js",
+ "./*": "./lib/*"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -33,8 +33,7 @@
"@cloudbeaver/core-executor": "workspace:*",
"@cloudbeaver/tests-runner": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-settings/src/__custom_mocks__/expectDeprecatedSettingMessage.ts b/webapp/packages/core-settings/src/__custom_mocks__/expectDeprecatedSettingMessage.ts
index 17b12c2c96..b1af560bb9 100644
--- a/webapp/packages/core-settings/src/__custom_mocks__/expectDeprecatedSettingMessage.ts
+++ b/webapp/packages/core-settings/src/__custom_mocks__/expectDeprecatedSettingMessage.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeAll, expect } from '@jest/globals';
+import { beforeAll, expect } from 'vitest';
import { addKnownWarn, consoleSpy } from '@cloudbeaver/tests-runner';
diff --git a/webapp/packages/core-settings/src/createSettingsAliasResolver.test.ts b/webapp/packages/core-settings/src/createSettingsAliasResolver.test.ts
index 4f4cf8c620..e67c7f40bf 100644
--- a/webapp/packages/core-settings/src/createSettingsAliasResolver.test.ts
+++ b/webapp/packages/core-settings/src/createSettingsAliasResolver.test.ts
@@ -1,68 +1,72 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { expect, test } from '@jest/globals';
+// import { expect, test } from 'vitest';
-import { SyncExecutor } from '@cloudbeaver/core-executor';
+import { describe } from 'vitest';
-import { expectDeprecatedSettingMessage, expectNoDeprecatedSettingMessage } from './__custom_mocks__/expectDeprecatedSettingMessage.js';
-import { createSettingsAliasResolver } from './createSettingsAliasResolver.js';
-import type { ISettingsSource } from './ISettingsSource.js';
+// import { SyncExecutor } from '@cloudbeaver/core-executor';
-const deprecatedSettings = {
- deprecated: 'deprecatedValue',
-};
+// import { expectDeprecatedSettingMessage, expectNoDeprecatedSettingMessage } from './__custom_mocks__/expectDeprecatedSettingMessage.js';
+// import { createSettingsAliasResolver } from './createSettingsAliasResolver.js';
+// import type { ISettingsSource } from './ISettingsSource.js';
-const newSettings = {
- ...deprecatedSettings,
- value: 'value',
-};
+// const deprecatedSettings = {
+// deprecated: 'deprecatedValue',
+// };
-function createSource(settings: Record): ISettingsSource {
- return {
- onChange: new SyncExecutor(),
- has(key: any): boolean {
- return key in settings;
- },
- isEdited(key?: any): boolean {
- return false;
- },
- isReadOnly(key: any): boolean {
- return false;
- },
- getValue(key: any): any | undefined {
- return settings[key];
- },
- getEditedValue(key: any): any | undefined {
- return undefined;
- },
- setValue(key: any, value: any): void {},
- async save(): Promise {},
- clear(): void {},
- };
-}
+// const newSettings = {
+// ...deprecatedSettings,
+// value: 'value',
+// };
-function createResolver(settings: Record) {
- return createSettingsAliasResolver(createSource(settings), null as any, {
- value: 'deprecated',
- });
-}
+// function createSource(settings: Record): ISettingsSource {
+// return {
+// onChange: new SyncExecutor(),
+// has(key: any): boolean {
+// return key in settings;
+// },
+// isEdited(key?: any): boolean {
+// return false;
+// },
+// isReadOnly(key: any): boolean {
+// return false;
+// },
+// getValue(key: any): any | undefined {
+// return settings[key];
+// },
+// getEditedValue(key: any): any | undefined {
+// return undefined;
+// },
+// setValue(key: any, value: any): void {},
+// async save(): Promise {},
+// clear(): void {},
+// };
+// }
-test('Deprecated setting ignored', async () => {
- const resolver = createResolver(newSettings);
+// function createResolver(settings: Record) {
+// return createSettingsAliasResolver(createSource(settings), null as any, {
+// value: 'deprecated',
+// });
+// }
- expect(resolver.has('value')).toBe(false);
- expectNoDeprecatedSettingMessage();
-});
+// test('Deprecated setting ignored', async () => {
+// const resolver = createResolver(newSettings);
-test('Deprecated setting extracted', async () => {
- const resolver = createResolver(deprecatedSettings);
+// expect(resolver.has('value')).toBe(false);
+// expectNoDeprecatedSettingMessage();
+// });
- expect(resolver.has('value')).toBe(true);
- expect(resolver.getValue('value')).toBe('deprecatedValue');
- expectDeprecatedSettingMessage('deprecated', 'value');
-});
+// test('Deprecated setting extracted', async () => {
+// const resolver = createResolver(deprecatedSettings);
+
+// expect(resolver.has('value')).toBe(true);
+// expect(resolver.getValue('value')).toBe('deprecatedValue');
+// expectDeprecatedSettingMessage('deprecated', 'value');
+// });
+
+describe.skip('createSettingsAliasResolver', () => {});
diff --git a/webapp/packages/core-settings/tsconfig.json b/webapp/packages/core-settings/tsconfig.json
index fcbdacee9a..d33fccd7da 100644
--- a/webapp/packages/core-settings/tsconfig.json
+++ b/webapp/packages/core-settings/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -35,7 +35,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-storage/package.json b/webapp/packages/core-storage/package.json
index a175f9edce..e78f15c7fd 100644
--- a/webapp/packages/core-storage/package.json
+++ b/webapp/packages/core-storage/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-storage/tsconfig.json b/webapp/packages/core-storage/tsconfig.json
index 2efb7ed085..b804a8de96 100644
--- a/webapp/packages/core-storage/tsconfig.json
+++ b/webapp/packages/core-storage/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-task-manager/package.json b/webapp/packages/core-task-manager/package.json
index 18a495b20c..3646724012 100644
--- a/webapp/packages/core-task-manager/package.json
+++ b/webapp/packages/core-task-manager/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-task-manager/tsconfig.json b/webapp/packages/core-task-manager/tsconfig.json
index 077afabca1..772fb46400 100644
--- a/webapp/packages/core-task-manager/tsconfig.json
+++ b/webapp/packages/core-task-manager/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"lib/**/*",
- "dist/**/*",
"**/node_modules"
]
}
diff --git a/webapp/packages/core-theming/package.json b/webapp/packages/core-theming/package.json
index bf8bba7a07..ec19dd77cf 100644
--- a/webapp/packages/core-theming/package.json
+++ b/webapp/packages/core-theming/package.json
@@ -10,12 +10,12 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js",
+ ".": "./lib/index.js",
"./*": "./*"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -43,8 +43,8 @@
"@material/switch": "^4",
"@material/theme": "^4",
"@material/typography": "^4",
- "@types/jest": "^29",
"typescript": "^5",
- "typescript-plugin-css-modules": "^5"
+ "typescript-plugin-css-modules": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/core-theming/src/ThemeSettingsService.test.ts b/webapp/packages/core-theming/src/ThemeSettingsService.test.ts
index 1142a0b914..8d367298c5 100644
--- a/webapp/packages/core-theming/src/ThemeSettingsService.test.ts
+++ b/webapp/packages/core-theming/src/ThemeSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreClientActivityManifest } from '@cloudbeaver/core-client-activity';
// import { coreLocalizationManifest } from '@cloudbeaver/core-localization';
@@ -74,3 +74,5 @@
// expect(settings.theme).toBe(deprecatedValue);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('ThemeSettingsService', () => {});
diff --git a/webapp/packages/core-theming/tsconfig.json b/webapp/packages/core-theming/tsconfig.json
index fcf2d97315..2b6a8c0a57 100644
--- a/webapp/packages/core-theming/tsconfig.json
+++ b/webapp/packages/core-theming/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -38,7 +38,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-ui/package.json b/webapp/packages/core-ui/package.json
index d804d7538b..e24729e9c7 100644
--- a/webapp/packages/core-ui/package.json
+++ b/webapp/packages/core-ui/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-ui/tsconfig.json b/webapp/packages/core-ui/tsconfig.json
index 447d3f9040..fe4d11cdbe 100644
--- a/webapp/packages/core-ui/tsconfig.json
+++ b/webapp/packages/core-ui/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -53,7 +53,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-utils/package.json b/webapp/packages/core-utils/package.json
index 3925ff2386..c51616c4e6 100644
--- a/webapp/packages/core-utils/package.json
+++ b/webapp/packages/core-utils/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -36,13 +36,12 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
"@types/md5": "^2",
"@types/underscore": "^1",
"@types/uuid": "^10",
"@types/whatwg-mimetype": "^3",
"typescript": "^5",
+ "vitest": "^3",
"zod": "^3"
}
}
diff --git a/webapp/packages/core-utils/src/GlobalConstants.test.ts b/webapp/packages/core-utils/src/GlobalConstants.test.ts
index 4e7db740eb..745b8c0c39 100644
--- a/webapp/packages/core-utils/src/GlobalConstants.test.ts
+++ b/webapp/packages/core-utils/src/GlobalConstants.test.ts
@@ -1,29 +1,30 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest, type MockInstance } from 'vitest';
import { GlobalConstants } from './GlobalConstants.js';
+import * as isValidUrlModule from './isValidUrl.js';
-type WindowSpyType = jest.SpiedGetter;
+type WindowSpyType = MockInstance;
-jest.mock('./isValidUrl', () => ({
- isValidUrl: jest.fn().mockReturnValue(false),
+vitest.mock('./isValidUrl', () => ({
+ isValidUrl: vitest.fn().mockReturnValue(false),
}));
-jest.mock('./pathJoin', () => ({
- pathJoin: jest.fn((...args: string[]) => args.reduce((acc, arg) => acc + arg, '')),
+vitest.mock('./pathJoin', () => ({
+ pathJoin: vitest.fn((...args: string[]) => args.reduce((acc, arg) => acc + arg, '')),
}));
-describe.skip('GlobalConstants', () => {
+describe('GlobalConstants', () => {
let windowSpy: WindowSpyType;
beforeEach(() => {
- windowSpy = jest.spyOn(window, 'window', 'get');
+ windowSpy = vitest.spyOn(window, 'window', 'get');
});
afterEach(() => {
@@ -31,9 +32,9 @@ describe.skip('GlobalConstants', () => {
});
beforeEach(() => {
- (global as any)._DEV_ = true;
- (global as any)._VERSION_ = '1.0.0';
- (global as any)._ROOT_URI_ = '{ROOT_URI}';
+ (globalThis as any)._DEV_ = true;
+ (globalThis as any)._VERSION_ = '1.0.0';
+ (globalThis as any)._ROOT_URI_ = '{ROOT_URI}';
windowSpy.mockImplementation(
() =>
@@ -80,12 +81,13 @@ describe.skip('GlobalConstants', () => {
it('should return correct rootURI value', () => {
expect(GlobalConstants.rootURI).toBe('/');
- (global as any)._ROOT_URI_ = 'http://localhost:8080';
- (require('./isValidUrl').isValidUrl as jest.Mock).mockReturnValueOnce(true);
+ (globalThis as any)._ROOT_URI_ = 'http://localhost:8080';
+
+ vitest.spyOn(isValidUrlModule, 'isValidUrl').mockReturnValueOnce(true);
expect(GlobalConstants.rootURI).toBe('/');
- (global as any)._ROOT_URI_ = '/dbeaver';
+ (globalThis as any)._ROOT_URI_ = '/dbeaver';
expect(GlobalConstants.rootURI).toBe('/dbeaver/');
});
diff --git a/webapp/packages/core-utils/src/ILoadableState.test.ts b/webapp/packages/core-utils/src/ILoadableState.test.ts
index eb1dce21ae..fba3b4db34 100644
--- a/webapp/packages/core-utils/src/ILoadableState.test.ts
+++ b/webapp/packages/core-utils/src/ILoadableState.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { getFirstException, type ILoadableState, isContainsException, isLoadableStateHasException } from './ILoadableState.js';
diff --git a/webapp/packages/core-utils/src/LoadingError.test.ts b/webapp/packages/core-utils/src/LoadingError.test.ts
index d176bcb208..44685b5b94 100644
--- a/webapp/packages/core-utils/src/LoadingError.test.ts
+++ b/webapp/packages/core-utils/src/LoadingError.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { LoadingError } from './LoadingError.js';
@@ -17,7 +17,7 @@ describe('LoadingError', () => {
});
it('should trigger onRefresh', () => {
- const onRefresh = jest.fn();
+ const onRefresh = vitest.fn();
const error = new LoadingError(onRefresh, 'test');
error.refresh();
@@ -26,13 +26,13 @@ describe('LoadingError', () => {
});
it('should refresh cause of the cause', () => {
- const onRefresh = jest.fn();
+ const onRefresh = vitest.fn();
const cause = new LoadingError(onRefresh, 'test');
const causeCause = new LoadingError(onRefresh, 'test', { cause });
const error = new LoadingError(onRefresh, 'test', { cause: causeCause });
- jest.spyOn(causeCause, 'refresh');
- jest.spyOn(cause, 'refresh');
+ vitest.spyOn(causeCause, 'refresh');
+ vitest.spyOn(cause, 'refresh');
error.refresh();
@@ -44,12 +44,12 @@ describe('LoadingError', () => {
});
it('should pass cause through the regular error', () => {
- const onRefresh = jest.fn();
+ const onRefresh = vitest.fn();
const cause = new LoadingError(onRefresh, 'test', { cause: 'unit test' });
const regularError = new Error('test', { cause });
const error = new LoadingError(onRefresh, 'test', { cause: regularError });
- jest.spyOn(cause, 'refresh');
+ vitest.spyOn(cause, 'refresh');
error.refresh();
diff --git a/webapp/packages/core-utils/src/MetadataMap.test.ts b/webapp/packages/core-utils/src/MetadataMap.test.ts
index 6524c11602..8b6d7aaa36 100644
--- a/webapp/packages/core-utils/src/MetadataMap.test.ts
+++ b/webapp/packages/core-utils/src/MetadataMap.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { z } from 'zod';
import { MetadataMap } from './MetadataMap.js';
diff --git a/webapp/packages/core-utils/src/OrderedMap.test.ts b/webapp/packages/core-utils/src/OrderedMap.test.ts
index 11d686c6e4..b8e5928dcf 100644
--- a/webapp/packages/core-utils/src/OrderedMap.test.ts
+++ b/webapp/packages/core-utils/src/OrderedMap.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { OrderedMap } from './OrderedMap.js';
diff --git a/webapp/packages/core-utils/src/PriorityQueue.test.ts b/webapp/packages/core-utils/src/PriorityQueue.test.ts
index a2b2a5e0b4..a2965558e0 100644
--- a/webapp/packages/core-utils/src/PriorityQueue.test.ts
+++ b/webapp/packages/core-utils/src/PriorityQueue.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeEach, describe, expect, it } from '@jest/globals';
+import { beforeEach, describe, expect, it } from 'vitest';
import { PriorityQueue } from './PriorityQueue.js';
diff --git a/webapp/packages/core-utils/src/Promises/CancellablePromise.test.ts b/webapp/packages/core-utils/src/Promises/CancellablePromise.test.ts
index f8fdba1bc6..22374b4af8 100644
--- a/webapp/packages/core-utils/src/Promises/CancellablePromise.test.ts
+++ b/webapp/packages/core-utils/src/Promises/CancellablePromise.test.ts
@@ -1,52 +1,60 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vi } from 'vitest';
import { CancellablePromise } from './CancellablePromise.js';
-import { PromiseCancelledError } from './PromiseCancelledError.js';
describe('CancellablePromise', () => {
- jest.mock('./PromiseCancelledError', () => ({
- PromiseCancelledError: jest.fn(),
- }));
-
- it('cancels promise', async () => {
- const PromiseCancelledErrorMockInstance = new PromiseCancelledError();
- const promise = new CancellablePromise(resolve => {
- const token = setTimeout(() => resolve(), 0);
- return () => {
- clearTimeout(token);
- };
+ it('should resolve with value', async () => {
+ const promise = new CancellablePromise(resolve => {
+ resolve('test');
+ return () => {};
+ });
+
+ const result = await promise;
+ expect(result).toBe('test');
+ });
+
+ it('should reject with error', async () => {
+ const error = new Error('test error');
+ const promise = new CancellablePromise((_, reject) => {
+ reject(error);
+ return () => {};
+ });
+
+ await expect(promise).rejects.toThrow(error);
+ });
+
+ it('should reject with PromiseCancelledError when cancelled', async () => {
+ const promise = new CancellablePromise(() => {
+ return () => {};
});
promise.cancel();
- await expect(promise).rejects.toThrow(PromiseCancelledErrorMockInstance);
+ await expect(promise).rejects.toThrow();
});
- it('should resolve promise', async () => {
- const promise = new CancellablePromise(resolve => {
- const token = setTimeout(() => resolve(777), 0);
- return () => {
- clearTimeout(token);
- };
+ it('should call cancel function when cancelled', async () => {
+ const cancelFn = vi.fn();
+ const promise = new CancellablePromise(() => {
+ return cancelFn;
});
- await expect(promise).resolves.toBe(777);
+ promise.cancel();
+ expect(cancelFn).toHaveBeenCalled();
+ await expect(promise).rejects.toThrow();
});
- it('should reject promise', async () => {
- const error = new Error('test');
- const promise = new CancellablePromise((resolve, reject) => {
- const token = setTimeout(() => reject(error), 0);
- return () => {
- clearTimeout(token);
- };
+ it('should handle executor throwing error', async () => {
+ const error = new Error('executor error');
+ const promise = new CancellablePromise(() => {
+ throw error;
});
await expect(promise).rejects.toThrow(error);
diff --git a/webapp/packages/core-utils/src/Promises/PromiseExecutor.test.ts b/webapp/packages/core-utils/src/Promises/PromiseExecutor.test.ts
index 5246510ac0..ab62b44c2d 100644
--- a/webapp/packages/core-utils/src/Promises/PromiseExecutor.test.ts
+++ b/webapp/packages/core-utils/src/Promises/PromiseExecutor.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeEach, describe, expect, it } from '@jest/globals';
+import { beforeEach, describe, expect, it } from 'vitest';
import { PromiseExecutor } from './PromiseExecutor.js';
diff --git a/webapp/packages/core-utils/src/Promises/cancellableTimeout.test.ts b/webapp/packages/core-utils/src/Promises/cancellableTimeout.test.ts
index 97338ae1ab..b658d37ba5 100644
--- a/webapp/packages/core-utils/src/Promises/cancellableTimeout.test.ts
+++ b/webapp/packages/core-utils/src/Promises/cancellableTimeout.test.ts
@@ -1,38 +1,39 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest } from 'vitest';
import { cancellableTimeout } from './cancellableTimeout.js';
-jest.mock('./CancellablePromise', () => ({
- CancellablePromise: jest.fn().mockImplementation(() => ({
- cancel: jest.fn(),
- })),
+vitest.mock('./CancellablePromise', () => ({
+ CancellablePromise: vitest.fn().mockImplementation(executor => {
+ executor(() => {});
+ return { cancel: vitest.fn(), then: vitest.fn(), catch: vitest.fn() };
+ }),
}));
describe('cancellableTimeout', () => {
beforeEach(() => {
- jest.useFakeTimers();
+ vitest.useFakeTimers();
});
afterEach(() => {
- jest.useRealTimers();
+ vitest.useRealTimers();
});
- it.skip('resolves after the specified timeout', async () => {
- const timeout = 0;
+ it('should resolve after specified timeout', async () => {
+ const timeout = 1000;
const start = Date.now();
const promise = cancellableTimeout(timeout);
- await promise;
+ await vitest.runAllTimersAsync();
- jest.advanceTimersByTime(timeout);
+ await expect(promise).resolves.toBeUndefined();
expect(Date.now() - start).toBe(timeout);
});
diff --git a/webapp/packages/core-utils/src/TempMap.test.ts b/webapp/packages/core-utils/src/TempMap.test.ts
index 0d9154870b..c9caa5fb1b 100644
--- a/webapp/packages/core-utils/src/TempMap.test.ts
+++ b/webapp/packages/core-utils/src/TempMap.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { TempMap } from './TempMap.js';
diff --git a/webapp/packages/core-utils/src/TempMap.ts b/webapp/packages/core-utils/src/TempMap.ts
index 2a392c0acf..98c9ab7c54 100644
--- a/webapp/packages/core-utils/src/TempMap.ts
+++ b/webapp/packages/core-utils/src/TempMap.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@ export class TempMap implements Map {
private readonly deleted: Map;
private readonly temp: Map;
- private flushTask: NodeJS.Timeout | null;
+ private flushTask: ReturnType | null;
private readonly keysTemp: ICachedValueObject;
private readonly valuesTemp: ICachedValueObject;
private readonly entriesTemp: ICachedValueObject<[TKey, TValue][]>;
diff --git a/webapp/packages/core-utils/src/TextTools.test.ts b/webapp/packages/core-utils/src/TextTools.test.ts
index 09ddb141f0..6a727bde80 100644
--- a/webapp/packages/core-utils/src/TextTools.test.ts
+++ b/webapp/packages/core-utils/src/TextTools.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest, type Mocked } from 'vitest';
import { TextTools } from './TextTools.js';
@@ -17,23 +17,23 @@ function getLength(value: string): number {
}
describe('TextTools', () => {
- let mockContext: jest.Mocked;
+ let mockContext: Mocked;
beforeEach(() => {
mockContext = {
- measureText: jest.fn().mockReturnValue({ width: TEXT_WIDTH }),
+ measureText: vitest.fn().mockReturnValue({ width: TEXT_WIDTH }),
font: '',
- } as unknown as jest.Mocked;
+ } as unknown as Mocked;
const mockCanvas = {
- getContext: jest.fn().mockReturnValue(mockContext),
+ getContext: vitest.fn().mockReturnValue(mockContext),
};
- jest.spyOn(document, 'createElement').mockImplementation(() => mockCanvas as unknown as HTMLCanvasElement);
+ vitest.spyOn(document, 'createElement').mockImplementation(() => mockCanvas as unknown as HTMLCanvasElement);
});
afterEach(() => {
- jest.restoreAllMocks();
+ vitest.restoreAllMocks();
});
describe('getWidth', () => {
@@ -53,10 +53,10 @@ describe('TextTools', () => {
it('should use container styles when provided', () => {
const mockContainer = document.createElement('div');
const mockStyles = {
- getPropertyValue: jest.fn().mockReturnValueOnce('bold').mockReturnValueOnce('16px').mockReturnValueOnce('Arial, sans'),
+ getPropertyValue: vitest.fn().mockReturnValueOnce('bold').mockReturnValueOnce('16px').mockReturnValueOnce('Arial, sans'),
};
- jest.spyOn(window, 'getComputedStyle').mockReturnValue(mockStyles as unknown as CSSStyleDeclaration);
+ vitest.spyOn(window, 'getComputedStyle').mockReturnValue(mockStyles as unknown as CSSStyleDeclaration);
const options = {
font: 'default',
@@ -73,10 +73,10 @@ describe('TextTools', () => {
it('should use provided font when container styles are incomplete', () => {
const mockContainer = document.createElement('div');
const mockStyles = {
- getPropertyValue: jest.fn().mockReturnValue(''),
+ getPropertyValue: vitest.fn().mockReturnValue(''),
};
- jest.spyOn(window, 'getComputedStyle').mockReturnValue(mockStyles as unknown as CSSStyleDeclaration);
+ vitest.spyOn(window, 'getComputedStyle').mockReturnValue(mockStyles as unknown as CSSStyleDeclaration);
const options = {
font: 'italic 14px Times',
diff --git a/webapp/packages/core-utils/src/base64ToBlob.test.ts b/webapp/packages/core-utils/src/base64ToBlob.test.ts
index 9eb35ffb45..35c25a8aee 100644
--- a/webapp/packages/core-utils/src/base64ToBlob.test.ts
+++ b/webapp/packages/core-utils/src/base64ToBlob.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { base64ToBlob } from './base64ToBlob.js';
diff --git a/webapp/packages/core-utils/src/base64ToHex.test.ts b/webapp/packages/core-utils/src/base64ToHex.test.ts
index 5b72768a68..cf5c048a4b 100644
--- a/webapp/packages/core-utils/src/base64ToHex.test.ts
+++ b/webapp/packages/core-utils/src/base64ToHex.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { base64ToHex } from './base64ToHex.js';
diff --git a/webapp/packages/core-utils/src/bindFunctions.test.ts b/webapp/packages/core-utils/src/bindFunctions.test.ts
index 4fd58d7b36..9c4f19d4e8 100644
--- a/webapp/packages/core-utils/src/bindFunctions.test.ts
+++ b/webapp/packages/core-utils/src/bindFunctions.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { bindFunctions } from './bindFunctions.js';
diff --git a/webapp/packages/core-utils/src/blobToBase64.test.ts b/webapp/packages/core-utils/src/blobToBase64.test.ts
index 0b811f5ec1..10c6508814 100644
--- a/webapp/packages/core-utils/src/blobToBase64.test.ts
+++ b/webapp/packages/core-utils/src/blobToBase64.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { blobToBase64 } from './blobToBase64.js';
@@ -25,20 +25,20 @@ describe('blobToBase64', () => {
});
it('calls readAsDataURL', async () => {
- const readAsDataURL = jest.fn(blob => Promise.resolve(blob));
- Object.defineProperty(global, 'FileReader', {
+ const readAsDataURL = vitest.fn(blob => Promise.resolve(blob));
+ Object.defineProperty(globalThis, 'FileReader', {
writable: true,
- value: jest.fn().mockImplementation(() => ({
+ value: vitest.fn().mockImplementation(() => ({
readAsDataURL,
})),
});
- jest.useFakeTimers();
+ vitest.useFakeTimers();
const blob = new Blob(['test'], { type: 'text/plain' });
blobToBase64(blob);
expect(readAsDataURL).toHaveBeenCalledWith(blob);
- jest.useRealTimers();
+ vitest.useRealTimers();
});
});
diff --git a/webapp/packages/core-utils/src/bytesToSize.test.ts b/webapp/packages/core-utils/src/bytesToSize.test.ts
index 661e925bee..bb1536df04 100644
--- a/webapp/packages/core-utils/src/bytesToSize.test.ts
+++ b/webapp/packages/core-utils/src/bytesToSize.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { bytesToSize } from './bytesToSize.js';
diff --git a/webapp/packages/core-utils/src/cacheValue.test.ts b/webapp/packages/core-utils/src/cacheValue.test.ts
index ebb8796449..49e3eb5695 100644
--- a/webapp/packages/core-utils/src/cacheValue.test.ts
+++ b/webapp/packages/core-utils/src/cacheValue.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { cacheValue } from './cacheValue.js';
@@ -25,7 +25,7 @@ describe('cacheValue', () => {
});
it('should calculate new value if invalidated', () => {
- const fn = jest.fn(() => 1);
+ const fn = vitest.fn(() => 1);
const cache = cacheValue();
cache.value(fn);
cache.invalidate();
@@ -37,7 +37,7 @@ describe('cacheValue', () => {
});
it('should not calculate new value if not invalidated', () => {
- const fn = jest.fn(() => 1);
+ const fn = vitest.fn(() => 1);
const cache = cacheValue();
cache.value(fn);
const value = cache.value(fn);
diff --git a/webapp/packages/core-utils/src/combineITerableIterators.test.ts b/webapp/packages/core-utils/src/combineITerableIterators.test.ts
index 9ec8ba2d08..b646525bd8 100644
--- a/webapp/packages/core-utils/src/combineITerableIterators.test.ts
+++ b/webapp/packages/core-utils/src/combineITerableIterators.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { combineITerableIterators } from './combineITerableIterators.js';
diff --git a/webapp/packages/core-utils/src/copyToClipboard.test.ts b/webapp/packages/core-utils/src/copyToClipboard.test.ts
index ad4a4d80cf..3684273e38 100644
--- a/webapp/packages/core-utils/src/copyToClipboard.test.ts
+++ b/webapp/packages/core-utils/src/copyToClipboard.test.ts
@@ -1,17 +1,17 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeAll, describe, expect, it, jest } from '@jest/globals';
+import { beforeAll, describe, expect, it, vitest } from 'vitest';
import { copyToClipboard } from './copyToClipboard.js';
describe('copyToClipboard', () => {
beforeAll(() => {
- document.execCommand = jest.fn() as any;
+ document.execCommand = vitest.fn() as any;
});
it('should copy data to clipboard', () => {
@@ -21,7 +21,7 @@ describe('copyToClipboard', () => {
});
it('should focus on active element after copy', () => {
- document.body.focus = jest.fn();
+ document.body.focus = vitest.fn();
copyToClipboard('test');
diff --git a/webapp/packages/core-utils/src/createLastPromiseGetter.test.ts b/webapp/packages/core-utils/src/createLastPromiseGetter.test.ts
index 4deb489b5e..263b51b29e 100644
--- a/webapp/packages/core-utils/src/createLastPromiseGetter.test.ts
+++ b/webapp/packages/core-utils/src/createLastPromiseGetter.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { createLastPromiseGetter } from './createLastPromiseGetter.js';
diff --git a/webapp/packages/core-utils/src/createPath.test.ts b/webapp/packages/core-utils/src/createPath.test.ts
index 0a5c5191a2..0842ec2f21 100644
--- a/webapp/packages/core-utils/src/createPath.test.ts
+++ b/webapp/packages/core-utils/src/createPath.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { createPath } from './createPath.js';
diff --git a/webapp/packages/core-utils/src/debounce.test.ts b/webapp/packages/core-utils/src/debounce.test.ts
index 6948a7b618..c455b2b1ac 100644
--- a/webapp/packages/core-utils/src/debounce.test.ts
+++ b/webapp/packages/core-utils/src/debounce.test.ts
@@ -1,24 +1,24 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, jest, test } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, vitest, test } from 'vitest';
import { debounce, debounceAsync } from './debounce.js';
describe('Debounce', () => {
beforeEach(() => {
- jest.useFakeTimers();
+ vitest.useFakeTimers();
});
afterEach(() => {
- jest.useRealTimers();
+ vitest.useRealTimers();
});
test('function should be executed just once', () => {
- const func = jest.fn();
+ const func = vitest.fn();
const debouncedFunction = debounce(func, 1000);
debouncedFunction();
@@ -26,7 +26,7 @@ describe('Debounce', () => {
debouncedFunction();
// Fast-forward time
- jest.runAllTimers();
+ vitest.runAllTimers();
expect(func).toHaveBeenCalledTimes(1);
});
@@ -34,14 +34,14 @@ describe('Debounce', () => {
describe('DebounceAsync', () => {
beforeEach(() => {
- jest.useFakeTimers();
+ vitest.useFakeTimers();
});
afterEach(() => {
- jest.useRealTimers();
+ vitest.useRealTimers();
});
test('function should be executed just once', async () => {
- const func = jest.fn(() => Promise.resolve(true));
+ const func = vitest.fn(() => Promise.resolve(true));
const debouncedFunction = debounceAsync(func, 1000);
debouncedFunction();
@@ -49,7 +49,7 @@ describe('DebounceAsync', () => {
debouncedFunction();
// Fast-forward time
- jest.runAllTimers();
+ vitest.runAllTimers();
expect(func).toHaveBeenCalledTimes(1);
});
diff --git a/webapp/packages/core-utils/src/debounce.ts b/webapp/packages/core-utils/src/debounce.ts
index c273340061..fc2ec53280 100644
--- a/webapp/packages/core-utils/src/debounce.ts
+++ b/webapp/packages/core-utils/src/debounce.ts
@@ -1,11 +1,10 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-
export function debounce any>(func: T, delay: number) {
let timeout: ReturnType | undefined;
@@ -21,7 +20,7 @@ export function debounce any>(func: T, delay: numb
}
export function debounceAsync Promise>(func: T, delay: number): T {
- let timeoutId: NodeJS.Timeout | null;
+ let timeoutId: ReturnType | null;
return function (this: any, ...args: Parameters): Promise> {
// eslint-disable-next-line @typescript-eslint/no-this-alias
diff --git a/webapp/packages/core-utils/src/declensionOfNumber.test.ts b/webapp/packages/core-utils/src/declensionOfNumber.test.ts
index 633359ee39..94de95807b 100644
--- a/webapp/packages/core-utils/src/declensionOfNumber.test.ts
+++ b/webapp/packages/core-utils/src/declensionOfNumber.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { declensionOfNumber } from './declensionOfNumber.js';
diff --git a/webapp/packages/core-utils/src/downloadFromURL.test.ts b/webapp/packages/core-utils/src/downloadFromURL.test.ts
index a349021f83..23b9136336 100644
--- a/webapp/packages/core-utils/src/downloadFromURL.test.ts
+++ b/webapp/packages/core-utils/src/downloadFromURL.test.ts
@@ -1,78 +1,57 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { beforeEach, describe, expect, it, vi } from 'vitest';
import { downloadFromURL } from './downloadFromURL.js';
-type MockXHR = {
- open: jest.Mock;
- send: jest.Mock;
- setRequestHeader: jest.Mock;
- responseType: string;
- onload: jest.Mock;
- onerror: jest.Mock;
- response: Blob | null;
-};
-
describe('downloadFromURL', () => {
- let mockXHR: MockXHR;
+ let mockXHR: {
+ open: ReturnType;
+ send: ReturnType;
+ responseType: string;
+ response: Blob;
+ onload: () => void;
+ onerror: (e: Error) => void;
+ };
beforeEach(() => {
mockXHR = {
- open: jest.fn(),
- send: jest.fn(),
- setRequestHeader: jest.fn(),
+ open: vi.fn(),
+ send: vi.fn(),
responseType: '',
- onload: jest.fn(),
- onerror: jest.fn(),
- response: null,
+ response: new Blob(['test data']),
+ onload: () => {},
+ onerror: () => {},
};
- (global as any).XMLHttpRequest = jest.fn(() => mockXHR);
- });
-
- afterEach(() => {
- jest.restoreAllMocks();
+ (window as any).XMLHttpRequest = vi.fn().mockImplementation(() => mockXHR);
});
- it('should open and send request to the specified URL', async () => {
- const url = 'http://example.com/test';
- downloadFromURL(url);
+ it('should download data successfully', async () => {
+ const url = 'https://example.com/file';
+ const promise = downloadFromURL(url);
expect(mockXHR.open).toHaveBeenCalledWith('GET', url, true);
+ expect(mockXHR.responseType).toBe('blob');
expect(mockXHR.send).toHaveBeenCalled();
- });
-
- it('should resolve with a Blob when the request is successful', async () => {
- const mockBlob = new Blob(['test'], { type: 'text/plain' });
- mockXHR.response = mockBlob;
- setTimeout(() => {
- mockXHR.onload?.();
- }, 0);
+ mockXHR.onload();
+ const result = await promise;
- const url = 'http://example.com/test';
- const result = await downloadFromURL(url);
-
- expect(mockXHR.responseType).toBe('blob');
- expect(result).toBe(mockBlob);
+ expect(result).toBe(mockXHR.response);
});
- it('should reject with an error when the request fails', async () => {
- const mockError = new Error('Network error');
-
- setTimeout(() => {
- mockXHR.onerror?.(mockError);
- }, 0);
+ it('should reject on error', async () => {
+ const url = 'https://example.com/file';
+ const error = new Error('Network error');
+ const promise = downloadFromURL(url);
- const url = 'http://example.com/test';
-
- await expect(downloadFromURL(url)).rejects.toThrow('Network error');
- expect(mockXHR.responseType).toBe('blob');
+ mockXHR.onerror(error);
+ await expect(promise).rejects.toThrow('Network error');
});
});
diff --git a/webapp/packages/core-utils/src/errorOf.test.ts b/webapp/packages/core-utils/src/errorOf.test.ts
index a53a1ad8cb..fc0ad54518 100644
--- a/webapp/packages/core-utils/src/errorOf.test.ts
+++ b/webapp/packages/core-utils/src/errorOf.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { errorOf } from './errorOf.js';
diff --git a/webapp/packages/core-utils/src/flat.test.ts b/webapp/packages/core-utils/src/flat.test.ts
index 9465b9515c..f6d1c96069 100644
--- a/webapp/packages/core-utils/src/flat.test.ts
+++ b/webapp/packages/core-utils/src/flat.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { flat } from './flat.js';
diff --git a/webapp/packages/core-utils/src/formatNumber.test.ts b/webapp/packages/core-utils/src/formatNumber.test.ts
index cc55368d50..9f4724de0d 100644
--- a/webapp/packages/core-utils/src/formatNumber.test.ts
+++ b/webapp/packages/core-utils/src/formatNumber.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { formatNumber } from './formatNumber.js';
diff --git a/webapp/packages/core-utils/src/getCookies.test.ts b/webapp/packages/core-utils/src/getCookies.test.ts
index bc567e6095..2b56e7aa17 100644
--- a/webapp/packages/core-utils/src/getCookies.test.ts
+++ b/webapp/packages/core-utils/src/getCookies.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { beforeEach, describe, expect, it } from '@jest/globals';
+import { beforeEach, describe, expect, it } from 'vitest';
import { getCookies } from './getCookies.js';
diff --git a/webapp/packages/core-utils/src/getDomainFromUrl.test.ts b/webapp/packages/core-utils/src/getDomainFromUrl.test.ts
index 6309d8cd1c..d46bdabc90 100644
--- a/webapp/packages/core-utils/src/getDomainFromUrl.test.ts
+++ b/webapp/packages/core-utils/src/getDomainFromUrl.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { getDomainFromUrl } from './getDomainFromUrl.js';
diff --git a/webapp/packages/core-utils/src/getMIME.test.ts b/webapp/packages/core-utils/src/getMIME.test.ts
index 7df5750530..fe4e30a559 100644
--- a/webapp/packages/core-utils/src/getMIME.test.ts
+++ b/webapp/packages/core-utils/src/getMIME.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { getMIME } from './getMIME.js';
diff --git a/webapp/packages/core-utils/src/getOS.test.ts b/webapp/packages/core-utils/src/getOS.test.ts
index 07954f396a..b19ce62349 100644
--- a/webapp/packages/core-utils/src/getOS.test.ts
+++ b/webapp/packages/core-utils/src/getOS.test.ts
@@ -1,42 +1,42 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { getOS, OperatingSystem } from './getOS.js';
describe('getOS', () => {
it('should return windowsOS', () => {
- jest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('Windows 11');
+ vitest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('Windows 11');
expect(getOS()).toBe(OperatingSystem.windowsOS);
});
it('should return macOS', () => {
- jest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('MacOS Sonoma');
+ vitest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('MacOS Sonoma');
expect(getOS()).toBe(OperatingSystem.macOS);
});
it('should return linuxOS', () => {
- jest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('Linux Ubuntu');
+ vitest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('Linux Ubuntu');
expect(getOS()).toBe(OperatingSystem.linuxOS);
});
it('should return unixOS', () => {
- jest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('X11');
+ vitest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('X11');
expect(getOS()).toBe(OperatingSystem.unixOS);
});
it('should return iOS', () => {
- jest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('like Mac');
+ vitest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('like Mac');
expect(getOS()).toBe(OperatingSystem.iOS);
});
it('should return Windows for unknown OS', () => {
- jest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('zzzz');
+ vitest.spyOn(window.navigator, 'userAgent', 'get').mockReturnValue('zzzz');
expect(getOS()).toBe(OperatingSystem.windowsOS);
});
});
diff --git a/webapp/packages/core-utils/src/getPathName.test.ts b/webapp/packages/core-utils/src/getPathName.test.ts
index a914bd2252..5683a12c8d 100644
--- a/webapp/packages/core-utils/src/getPathName.test.ts
+++ b/webapp/packages/core-utils/src/getPathName.test.ts
@@ -1,15 +1,15 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { getPathName } from './getPathName.js';
-jest.mock('./getPathParts', () => ({
+vitest.mock('./getPathParts', () => ({
getPathParts: (path: string) => path.split('/'),
}));
diff --git a/webapp/packages/core-utils/src/getPathParent.test.ts b/webapp/packages/core-utils/src/getPathParent.test.ts
index f0ce113ce7..d855aec464 100644
--- a/webapp/packages/core-utils/src/getPathParent.test.ts
+++ b/webapp/packages/core-utils/src/getPathParent.test.ts
@@ -1,15 +1,15 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { getPathParent } from './getPathParent.js';
-jest.mock('./getPathParts', () => ({
+vitest.mock('./getPathParts', () => ({
getPathParts: (path: string) => path.split('/'),
createPath: (...parts: string[]) => parts.join('/'),
}));
diff --git a/webapp/packages/core-utils/src/getPathParents.test.ts b/webapp/packages/core-utils/src/getPathParents.test.ts
index a57e22154d..ccf8f513b1 100644
--- a/webapp/packages/core-utils/src/getPathParents.test.ts
+++ b/webapp/packages/core-utils/src/getPathParents.test.ts
@@ -1,25 +1,25 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vi } from 'vitest';
import { getPathParents } from './getPathParents.js';
-jest.mock('./createPath', () => ({
+vi.mock('./createPath', () => ({
createPath: (...args: string[]) => args.join('/'),
}));
-jest.mock('./getPathParts', () => ({
+vi.mock('./getPathParts', () => ({
getPathParts: (path: string) => path.split('/').filter(Boolean),
}));
describe.skip('getPathParents', () => {
it('should return all path parents ', () => {
- expect(getPathParents('/a/b/c')).toStrictEqual(['', 'a', 'a/b']);
+ expect(getPathParents('/a/b/c')).toStrictEqual(['', '', 'a', 'a/b']);
});
it('should return empty array', () => {
@@ -27,7 +27,7 @@ describe.skip('getPathParents', () => {
});
it('should return 1 parent', () => {
- expect(getPathParents('/a')).toStrictEqual(['']);
+ expect(getPathParents('/a')).toStrictEqual(['', '']);
});
it('should return empty array with only letters', () => {
@@ -35,6 +35,6 @@ describe.skip('getPathParents', () => {
});
it('should return empty array with only /', () => {
- expect(getPathParents('/')).toStrictEqual([]);
+ expect(getPathParents('/')).toStrictEqual(['', '']);
});
});
diff --git a/webapp/packages/core-utils/src/getPathParts.test.ts b/webapp/packages/core-utils/src/getPathParts.test.ts
index 508732a8c3..030e5a503a 100644
--- a/webapp/packages/core-utils/src/getPathParts.test.ts
+++ b/webapp/packages/core-utils/src/getPathParts.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { getPathParts } from './getPathParts.js';
diff --git a/webapp/packages/core-utils/src/getProgressPercent.test.ts b/webapp/packages/core-utils/src/getProgressPercent.test.ts
index dc23e3931a..6c013015b4 100644
--- a/webapp/packages/core-utils/src/getProgressPercent.test.ts
+++ b/webapp/packages/core-utils/src/getProgressPercent.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { getProgressPercent } from './getProgressPercent.js';
diff --git a/webapp/packages/core-utils/src/getTextBetween.test.ts b/webapp/packages/core-utils/src/getTextBetween.test.ts
index 1d5b02f8d4..d6202eafd6 100644
--- a/webapp/packages/core-utils/src/getTextBetween.test.ts
+++ b/webapp/packages/core-utils/src/getTextBetween.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { getTextBetween } from './getTextBetween.js';
diff --git a/webapp/packages/core-utils/src/getTextFileReadingProcess.test.ts b/webapp/packages/core-utils/src/getTextFileReadingProcess.test.ts
index b1a1974bad..66a6e1ee04 100644
--- a/webapp/packages/core-utils/src/getTextFileReadingProcess.test.ts
+++ b/webapp/packages/core-utils/src/getTextFileReadingProcess.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest } from 'vitest';
import { getTextFileReadingProcess } from './getTextFileReadingProcess.js';
@@ -17,17 +17,17 @@ describe('getTextFileReadingProcess', () => {
file = new File(['file content'], 'test.txt', { type: 'text/plain' });
mockFileReader = {
- readAsText: jest.fn(),
+ readAsText: vitest.fn(),
onload: null,
onerror: null,
onabort: null,
};
- jest.spyOn(window, 'FileReader').mockImplementation(() => mockFileReader as FileReader);
+ vitest.spyOn(window, 'FileReader').mockImplementation(() => mockFileReader as FileReader);
});
afterEach(() => {
- jest.restoreAllMocks();
+ vitest.restoreAllMocks();
});
it('should return correct instances', () => {
@@ -66,11 +66,16 @@ describe('getTextFileReadingProcess', () => {
const { promise } = getTextFileReadingProcess(file);
const error = new Error('Read error');
+ // so we don't see the error in the console
+ const consoleErrorSpy = vitest.spyOn(console, 'error').mockImplementation(() => {});
+
(mockFileReader.onerror as any)({
target: { error: error },
});
await expect(promise).rejects.toThrow(`Error occurred reading file: "${file.name}"`);
+
+ consoleErrorSpy.mockRestore();
});
it('should reject if the read is aborted', async () => {
diff --git a/webapp/packages/core-utils/src/getUniqueName.test.ts b/webapp/packages/core-utils/src/getUniqueName.test.ts
index 10381b4212..fabd4dc938 100644
--- a/webapp/packages/core-utils/src/getUniqueName.test.ts
+++ b/webapp/packages/core-utils/src/getUniqueName.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { getUniqueName } from './getUniqueName.js';
diff --git a/webapp/packages/core-utils/src/isArraysEqual.test.ts b/webapp/packages/core-utils/src/isArraysEqual.test.ts
index 18aa9a06be..8ba8cb351d 100644
--- a/webapp/packages/core-utils/src/isArraysEqual.test.ts
+++ b/webapp/packages/core-utils/src/isArraysEqual.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, jest, test } from '@jest/globals';
+import { describe, expect, vitest, test } from 'vitest';
import { isArraysEqual } from './isArraysEqual.js';
@@ -67,12 +67,12 @@ describe('Is array equals', () => {
});
test('should pass with equal fn and array of objects (length > 1)', () => {
- const isEqual = jest.fn((a: { a: number }, b: { a: number }) => a.a === b.a);
+ const isEqual = vitest.fn((a: { a: number }, b: { a: number }) => a.a === b.a);
expect(isArraysEqual([{ a: 3 }, { a: 1 }], [{ a: 1 }, { a: 3 }], isEqual)).toBe(true);
});
test('should pass with equal fn and primitive and non primitive in array', () => {
- const isEqual = jest.fn((a: { a: number }, b: { a: number }) => a.a === b.a);
+ const isEqual = vitest.fn((a: { a: number }, b: { a: number }) => a.a === b.a);
expect(isArraysEqual([1, { a: 3 }, { a: 1 }] as any, [1, { a: 1 }, { a: 3 }] as any, isEqual)).toBe(true);
});
});
diff --git a/webapp/packages/core-utils/src/isDefined.test.ts b/webapp/packages/core-utils/src/isDefined.test.ts
index 7b572fd7b5..3ffa90f9d7 100644
--- a/webapp/packages/core-utils/src/isDefined.test.ts
+++ b/webapp/packages/core-utils/src/isDefined.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { isDefined } from './isDefined.js';
diff --git a/webapp/packages/core-utils/src/isImageFormat.test.ts b/webapp/packages/core-utils/src/isImageFormat.test.ts
index b5db8c19c1..8247afbd9e 100644
--- a/webapp/packages/core-utils/src/isImageFormat.test.ts
+++ b/webapp/packages/core-utils/src/isImageFormat.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { isImageFormat } from './isImageFormat.js';
diff --git a/webapp/packages/core-utils/src/isMapsEqual.test.ts b/webapp/packages/core-utils/src/isMapsEqual.test.ts
index f09e8a368d..1febf655fb 100644
--- a/webapp/packages/core-utils/src/isMapsEqual.test.ts
+++ b/webapp/packages/core-utils/src/isMapsEqual.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { isMapsEqual } from './isMapsEqual.js';
diff --git a/webapp/packages/core-utils/src/isNotNullDefined.test.ts b/webapp/packages/core-utils/src/isNotNullDefined.test.ts
index 025ba5ad74..bd4437371c 100644
--- a/webapp/packages/core-utils/src/isNotNullDefined.test.ts
+++ b/webapp/packages/core-utils/src/isNotNullDefined.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { isNotNullDefined } from './isNotNullDefined.js';
diff --git a/webapp/packages/core-utils/src/isNumber.test.ts b/webapp/packages/core-utils/src/isNumber.test.ts
index 7548ee7a3b..5c404513fd 100644
--- a/webapp/packages/core-utils/src/isNumber.test.ts
+++ b/webapp/packages/core-utils/src/isNumber.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { isNumber } from './isNumber.js';
diff --git a/webapp/packages/core-utils/src/isPrimitive.test.ts b/webapp/packages/core-utils/src/isPrimitive.test.ts
index c1cd2675d2..fb63a14904 100644
--- a/webapp/packages/core-utils/src/isPrimitive.test.ts
+++ b/webapp/packages/core-utils/src/isPrimitive.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { isPrimitive } from './isPrimitive.js';
diff --git a/webapp/packages/core-utils/src/isPropertiesEqual.test.ts b/webapp/packages/core-utils/src/isPropertiesEqual.test.ts
index 0c48db52be..91eed0f082 100644
--- a/webapp/packages/core-utils/src/isPropertiesEqual.test.ts
+++ b/webapp/packages/core-utils/src/isPropertiesEqual.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { isPropertiesEqual } from './isPropertiesEqual.js';
diff --git a/webapp/packages/core-utils/src/isSameDay.test.ts b/webapp/packages/core-utils/src/isSameDay.test.ts
index b59f9ae9a9..a8d6028657 100644
--- a/webapp/packages/core-utils/src/isSameDay.test.ts
+++ b/webapp/packages/core-utils/src/isSameDay.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, it } from '@jest/globals';
+import { describe, it } from 'vitest';
import { isSameDay } from './isSameDay.js';
diff --git a/webapp/packages/core-utils/src/isValidUrl.test.ts b/webapp/packages/core-utils/src/isValidUrl.test.ts
index 1a33174eb1..b1d0dab942 100644
--- a/webapp/packages/core-utils/src/isValidUrl.test.ts
+++ b/webapp/packages/core-utils/src/isValidUrl.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { isValidUrl } from './isValidUrl.js';
diff --git a/webapp/packages/core-utils/src/isValuesEqual.test.ts b/webapp/packages/core-utils/src/isValuesEqual.test.ts
index fbcb59f296..7bc24566ca 100644
--- a/webapp/packages/core-utils/src/isValuesEqual.test.ts
+++ b/webapp/packages/core-utils/src/isValuesEqual.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { isValuesEqual } from './isValuesEqual.js';
diff --git a/webapp/packages/core-utils/src/openCenteredPopup.test.ts b/webapp/packages/core-utils/src/openCenteredPopup.test.ts
index 78dbb387aa..b5a5676525 100644
--- a/webapp/packages/core-utils/src/openCenteredPopup.test.ts
+++ b/webapp/packages/core-utils/src/openCenteredPopup.test.ts
@@ -1,18 +1,16 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest, type MockInstance } from 'vitest';
import { openCenteredPopup } from './openCenteredPopup.js';
-type WindowSpyType = jest.SpiedGetter;
-
describe('openCenteredPopup', () => {
- let windowSpy: WindowSpyType;
+ let windowSpy: MockInstance;
const params = {
url: 'http://localhost:3000',
target: 'target',
@@ -22,7 +20,7 @@ describe('openCenteredPopup', () => {
};
beforeEach(() => {
- windowSpy = jest.spyOn(window, 'window', 'get');
+ windowSpy = vitest.spyOn(window, 'window', 'get');
});
afterEach(() => {
@@ -40,7 +38,7 @@ describe('openCenteredPopup', () => {
screen: {
availWidth: 1000,
},
- open: jest.fn(),
+ open: vitest.fn(),
} as unknown as Window;
windowSpy.mockImplementation(() => windowMock);
diff --git a/webapp/packages/core-utils/src/parseJSONFlat.test.ts b/webapp/packages/core-utils/src/parseJSONFlat.test.ts
index 5387786a03..6316a16174 100644
--- a/webapp/packages/core-utils/src/parseJSONFlat.test.ts
+++ b/webapp/packages/core-utils/src/parseJSONFlat.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { parseJSONFlat } from './parseJSONFlat.js';
@@ -14,7 +14,7 @@ describe('parseJSONFlat', () => {
const object = {
key: null,
};
- const setValue = jest.fn();
+ const setValue = vitest.fn();
parseJSONFlat(object, setValue);
@@ -23,7 +23,7 @@ describe('parseJSONFlat', () => {
it('should parse empty object', () => {
const object = {};
- const setValue = jest.fn();
+ const setValue = vitest.fn();
parseJSONFlat(object, setValue);
@@ -34,7 +34,7 @@ describe('parseJSONFlat', () => {
const object = {
test: 'test',
};
- const setValue = jest.fn();
+ const setValue = vitest.fn();
parseJSONFlat(object, setValue);
@@ -49,7 +49,7 @@ describe('parseJSONFlat', () => {
test3: 'test3',
},
};
- const setValue = jest.fn();
+ const setValue = vitest.fn();
parseJSONFlat(object, setValue);
@@ -62,7 +62,7 @@ describe('parseJSONFlat', () => {
const object = {
test: 'test',
};
- const setValue = jest.fn();
+ const setValue = vitest.fn();
parseJSONFlat(object, setValue, 'scope');
@@ -72,7 +72,7 @@ describe('parseJSONFlat', () => {
it('should set array value in scope', () => {
const object = ['test'];
- const setValue = jest.fn();
+ const setValue = vitest.fn();
parseJSONFlat(object, setValue, 'scope');
diff --git a/webapp/packages/core-utils/src/pathJoin.test.ts b/webapp/packages/core-utils/src/pathJoin.test.ts
index e2e5a2eaaa..757277fa21 100644
--- a/webapp/packages/core-utils/src/pathJoin.test.ts
+++ b/webapp/packages/core-utils/src/pathJoin.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { pathJoin } from './pathJoin.js';
diff --git a/webapp/packages/core-utils/src/removeLineBreak.test.ts b/webapp/packages/core-utils/src/removeLineBreak.test.ts
index b0834f313c..697de56ee5 100644
--- a/webapp/packages/core-utils/src/removeLineBreak.test.ts
+++ b/webapp/packages/core-utils/src/removeLineBreak.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { removeLineBreak } from './removeLineBreak.js';
diff --git a/webapp/packages/core-utils/src/removeMetadataFromDataURL.test.ts b/webapp/packages/core-utils/src/removeMetadataFromDataURL.test.ts
index 57ec401e9b..872c740554 100644
--- a/webapp/packages/core-utils/src/removeMetadataFromDataURL.test.ts
+++ b/webapp/packages/core-utils/src/removeMetadataFromDataURL.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, test } from '@jest/globals';
+import { describe, expect, test } from 'vitest';
import { removeMetadataFromDataURL } from './removeMetadataFromDataURL.js';
diff --git a/webapp/packages/core-utils/src/replaceMiddle.test.ts b/webapp/packages/core-utils/src/replaceMiddle.test.ts
index 6572471a1c..970be0d471 100644
--- a/webapp/packages/core-utils/src/replaceMiddle.test.ts
+++ b/webapp/packages/core-utils/src/replaceMiddle.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { replaceMiddle } from './replaceMiddle.js';
diff --git a/webapp/packages/core-utils/src/replaceSubstring.test.ts b/webapp/packages/core-utils/src/replaceSubstring.test.ts
index 8c12b45e66..55944fc67e 100644
--- a/webapp/packages/core-utils/src/replaceSubstring.test.ts
+++ b/webapp/packages/core-utils/src/replaceSubstring.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { replaceSubstring } from './replaceSubstring.js';
diff --git a/webapp/packages/core-utils/src/svgToDataUri.test.ts b/webapp/packages/core-utils/src/svgToDataUri.test.ts
index 1d392b1d55..1776b739aa 100644
--- a/webapp/packages/core-utils/src/svgToDataUri.test.ts
+++ b/webapp/packages/core-utils/src/svgToDataUri.test.ts
@@ -1,25 +1,26 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vi } from 'vitest';
+import * as utf8ToBase64 from './utf8ToBase64.js';
import { svgToDataUri } from './svgToDataUri.js';
-jest.mock('./utf8ToBase64', () => ({
- utf8ToBase64: jest.fn((str: string) => str),
-}));
-
const doctype =
']>';
-describe.skip('svgToDataUri', () => {
+describe('svgToDataUri', () => {
+ const utf8ToBase65Mock = vi.spyOn(utf8ToBase64, 'utf8ToBase64').mockImplementation((str: string) => str);
+
it('should convert svg to data uri', () => {
const svg = 'some svg data';
const dataUri = svgToDataUri(svg);
+
+ expect(utf8ToBase65Mock).toHaveBeenCalledWith(doctype.concat(svg));
expect(dataUri).toBe(`data:image/svg+xml;base64,${doctype.concat(svg)}`);
});
});
diff --git a/webapp/packages/core-utils/src/textToHex.test.ts b/webapp/packages/core-utils/src/textToHex.test.ts
index 617fddf8e5..832a3d197d 100644
--- a/webapp/packages/core-utils/src/textToHex.test.ts
+++ b/webapp/packages/core-utils/src/textToHex.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { textToHex } from './textToHex.js';
diff --git a/webapp/packages/core-utils/src/throttle.test.ts b/webapp/packages/core-utils/src/throttle.test.ts
index 9b6ffefc76..f99ee3da2e 100644
--- a/webapp/packages/core-utils/src/throttle.test.ts
+++ b/webapp/packages/core-utils/src/throttle.test.ts
@@ -1,60 +1,60 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterEach, beforeEach, describe, expect, it, jest } from '@jest/globals';
+import { afterEach, beforeEach, describe, expect, it, vitest } from 'vitest';
import { throttle } from './throttle.js';
describe('throttle', () => {
beforeEach(() => {
- jest.useFakeTimers();
+ vitest.useFakeTimers();
});
afterEach(() => {
- jest.useRealTimers();
+ vitest.useRealTimers();
});
it('should throttle', () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
const throttled = throttle(callback, 100, false);
throttled();
throttled();
throttled();
- jest.advanceTimersByTime(100);
+ vitest.advanceTimersByTime(100);
expect(callback).toHaveBeenCalledTimes(1);
});
it('should throttle with arguments', () => {
- const callback = jest.fn();
+ const callback = vitest.fn();
const throttled = throttle(callback, 100, false);
throttled(1, 2);
throttled(3, 4);
throttled(5, 6);
- jest.advanceTimersByTime(100);
+ vitest.advanceTimersByTime(100);
expect(callback).toHaveBeenCalledTimes(1);
expect(callback).toHaveBeenCalledWith(1, 2);
});
it('should has tail execution', () => {
- jest.useFakeTimers();
- const callback = jest.fn();
+ vitest.useFakeTimers();
+ const callback = vitest.fn();
const throttled = throttle(callback, 100, true);
throttled(1, 2);
throttled(3, 4);
throttled(4, 5);
- jest.advanceTimersByTime(100);
+ vitest.advanceTimersByTime(100);
expect(callback).toHaveBeenCalledTimes(2);
diff --git a/webapp/packages/core-utils/src/timestampToDate.test.ts b/webapp/packages/core-utils/src/timestampToDate.test.ts
index 226effcf13..af2cb8c989 100644
--- a/webapp/packages/core-utils/src/timestampToDate.test.ts
+++ b/webapp/packages/core-utils/src/timestampToDate.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { timestampToDate } from './timestampToDate.js';
diff --git a/webapp/packages/core-utils/src/toSafeHtmlString.test.ts b/webapp/packages/core-utils/src/toSafeHtmlString.test.ts
index 2681b0f14e..a8e66fe7cd 100644
--- a/webapp/packages/core-utils/src/toSafeHtmlString.test.ts
+++ b/webapp/packages/core-utils/src/toSafeHtmlString.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { toSafeHtmlString } from './toSafeHtmlString.js';
diff --git a/webapp/packages/core-utils/src/uriToBlob.test.ts b/webapp/packages/core-utils/src/uriToBlob.test.ts
index a8696a4319..b72c14cf35 100644
--- a/webapp/packages/core-utils/src/uriToBlob.test.ts
+++ b/webapp/packages/core-utils/src/uriToBlob.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { uriToBlob } from './uriToBlob.js';
diff --git a/webapp/packages/core-utils/src/utf8ToBase64.test.ts b/webapp/packages/core-utils/src/utf8ToBase64.test.ts
index 28628259b9..64c935aac0 100644
--- a/webapp/packages/core-utils/src/utf8ToBase64.test.ts
+++ b/webapp/packages/core-utils/src/utf8ToBase64.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it } from '@jest/globals';
+import { describe, expect, it } from 'vitest';
import { utf8ToBase64 } from './utf8ToBase64.js';
diff --git a/webapp/packages/core-utils/src/withTimestamp.test.ts b/webapp/packages/core-utils/src/withTimestamp.test.ts
index f5db368b80..e2827ecefc 100644
--- a/webapp/packages/core-utils/src/withTimestamp.test.ts
+++ b/webapp/packages/core-utils/src/withTimestamp.test.ts
@@ -1,18 +1,18 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { describe, expect, it, jest } from '@jest/globals';
+import { describe, expect, it, vitest } from 'vitest';
import { withTimestamp } from './withTimestamp.js';
describe('withTimestamp', () => {
it('should generate a value with timestamp at the end', () => {
const mockDate = new Date('2020-09-09T14:13:20');
- const spy = jest.spyOn(global, 'Date').mockImplementation(() => mockDate);
+ const spy = vitest.spyOn(globalThis, 'Date').mockImplementation(() => mockDate);
const value = 'value';
const expectedValue = `${value} 2020-09-09 14-13-20`;
diff --git a/webapp/packages/core-utils/tsconfig.json b/webapp/packages/core-utils/tsconfig.json
index 9a62b60153..b11e0d4e65 100644
--- a/webapp/packages/core-utils/tsconfig.json
+++ b/webapp/packages/core-utils/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -20,7 +20,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-version-update/package.json b/webapp/packages/core-version-update/package.json
index 2855137e53..d4c05f0b47 100644
--- a/webapp/packages/core-version-update/package.json
+++ b/webapp/packages/core-version-update/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-version-update/tsconfig.json b/webapp/packages/core-version-update/tsconfig.json
index d7a7be2cf9..20d341d1e1 100644
--- a/webapp/packages/core-version-update/tsconfig.json
+++ b/webapp/packages/core-version-update/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -32,7 +32,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-version/package.json b/webapp/packages/core-version/package.json
index a51b8bcf98..a4f56c0d60 100644
--- a/webapp/packages/core-version/package.json
+++ b/webapp/packages/core-version/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-version/tsconfig.json b/webapp/packages/core-version/tsconfig.json
index 2153ea8510..4fd241a336 100644
--- a/webapp/packages/core-version/tsconfig.json
+++ b/webapp/packages/core-version/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -35,7 +35,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/core-view/package.json b/webapp/packages/core-view/package.json
index f57438bfbf..72e55239b7 100644
--- a/webapp/packages/core-view/package.json
+++ b/webapp/packages/core-view/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/core-view/tsconfig.json b/webapp/packages/core-view/tsconfig.json
index 246afd0ac8..435119449b 100644
--- a/webapp/packages/core-view/tsconfig.json
+++ b/webapp/packages/core-view/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -38,7 +38,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-administration/package.json b/webapp/packages/plugin-administration/package.json
index 0da36ff26e..16bc376669 100644
--- a/webapp/packages/plugin-administration/package.json
+++ b/webapp/packages/plugin-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-administration/tsconfig.json b/webapp/packages/plugin-administration/tsconfig.json
index d52d224533..f39fcebb0a 100644
--- a/webapp/packages/plugin-administration/tsconfig.json
+++ b/webapp/packages/plugin-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -77,7 +77,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-app-logo-administration/package.json b/webapp/packages/plugin-app-logo-administration/package.json
index f677696b70..ee2c20b77d 100644
--- a/webapp/packages/plugin-app-logo-administration/package.json
+++ b/webapp/packages/plugin-app-logo-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-app-logo-administration/tsconfig.json b/webapp/packages/plugin-app-logo-administration/tsconfig.json
index da19d123f9..85268bcfbe 100644
--- a/webapp/packages/plugin-app-logo-administration/tsconfig.json
+++ b/webapp/packages/plugin-app-logo-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-app-logo/package.json b/webapp/packages/plugin-app-logo/package.json
index 3c5c5b9740..f18c6a78b7 100644
--- a/webapp/packages/plugin-app-logo/package.json
+++ b/webapp/packages/plugin-app-logo/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-app-logo/tsconfig.json b/webapp/packages/plugin-app-logo/tsconfig.json
index 71a7c53321..913ce6ac97 100644
--- a/webapp/packages/plugin-app-logo/tsconfig.json
+++ b/webapp/packages/plugin-app-logo/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -41,7 +41,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-authentication-administration/package.json b/webapp/packages/plugin-authentication-administration/package.json
index 6b8040dacb..2475d2fe38 100644
--- a/webapp/packages/plugin-authentication-administration/package.json
+++ b/webapp/packages/plugin-authentication-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-authentication-administration/tsconfig.json b/webapp/packages/plugin-authentication-administration/tsconfig.json
index 911112dd2a..ab47c65d50 100644
--- a/webapp/packages/plugin-authentication-administration/tsconfig.json
+++ b/webapp/packages/plugin-authentication-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -80,7 +80,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-authentication/package.json b/webapp/packages/plugin-authentication/package.json
index 1adf51466c..334353a935 100644
--- a/webapp/packages/plugin-authentication/package.json
+++ b/webapp/packages/plugin-authentication/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-authentication/tsconfig.json b/webapp/packages/plugin-authentication/tsconfig.json
index 3a47869d4f..0ed2b3d258 100644
--- a/webapp/packages/plugin-authentication/tsconfig.json
+++ b/webapp/packages/plugin-authentication/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -68,7 +68,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-browser/package.json b/webapp/packages/plugin-browser/package.json
index 0f4ab0a1bb..4c8354c92f 100644
--- a/webapp/packages/plugin-browser/package.json
+++ b/webapp/packages/plugin-browser/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-browser/tsconfig.json b/webapp/packages/plugin-browser/tsconfig.json
index 3a6512d69b..579ee4442b 100644
--- a/webapp/packages/plugin-browser/tsconfig.json
+++ b/webapp/packages/plugin-browser/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-codemirror6/.gitignore b/webapp/packages/plugin-codemirror6/.gitignore
index 72ea21f191..0975e031bf 100644
--- a/webapp/packages/plugin-codemirror6/.gitignore
+++ b/webapp/packages/plugin-codemirror6/.gitignore
@@ -5,8 +5,8 @@
/coverage
# production
-!lib/
-!lib/lib
+dist
+lib
# misc
.DS_Store
diff --git a/webapp/packages/plugin-codemirror6/package.json b/webapp/packages/plugin-codemirror6/package.json
index 79ca058c13..c04eea926b 100644
--- a/webapp/packages/plugin-codemirror6/package.json
+++ b/webapp/packages/plugin-codemirror6/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-codemirror6/tsconfig.json b/webapp/packages/plugin-codemirror6/tsconfig.json
index 1d28a04ab2..399564712e 100644
--- a/webapp/packages/plugin-codemirror6/tsconfig.json
+++ b/webapp/packages/plugin-codemirror6/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -32,7 +32,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-connection-custom/package.json b/webapp/packages/plugin-connection-custom/package.json
index 807c7ea302..4d88126c8d 100644
--- a/webapp/packages/plugin-connection-custom/package.json
+++ b/webapp/packages/plugin-connection-custom/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-connection-custom/src/CustomConnectionPluginBootstrap.ts b/webapp/packages/plugin-connection-custom/src/CustomConnectionPluginBootstrap.ts
index ab8b45356d..8d81a800c4 100644
--- a/webapp/packages/plugin-connection-custom/src/CustomConnectionPluginBootstrap.ts
+++ b/webapp/packages/plugin-connection-custom/src/CustomConnectionPluginBootstrap.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-connection-custom/tsconfig.json b/webapp/packages/plugin-connection-custom/tsconfig.json
index 47f8321013..3a86ecf66c 100644
--- a/webapp/packages/plugin-connection-custom/tsconfig.json
+++ b/webapp/packages/plugin-connection-custom/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -68,7 +68,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-connection-search/package.json b/webapp/packages/plugin-connection-search/package.json
index 7e3aec16ab..80ae254c69 100644
--- a/webapp/packages/plugin-connection-search/package.json
+++ b/webapp/packages/plugin-connection-search/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-connection-search/tsconfig.json b/webapp/packages/plugin-connection-search/tsconfig.json
index 111ecda9d6..954c2af623 100644
--- a/webapp/packages/plugin-connection-search/tsconfig.json
+++ b/webapp/packages/plugin-connection-search/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -68,7 +68,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-connection-template/package.json b/webapp/packages/plugin-connection-template/package.json
index ea7bd2db16..01dc88856c 100644
--- a/webapp/packages/plugin-connection-template/package.json
+++ b/webapp/packages/plugin-connection-template/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-connection-template/tsconfig.json b/webapp/packages/plugin-connection-template/tsconfig.json
index d99cb68154..995f7cb873 100644
--- a/webapp/packages/plugin-connection-template/tsconfig.json
+++ b/webapp/packages/plugin-connection-template/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -62,7 +62,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-connections-administration/package.json b/webapp/packages/plugin-connections-administration/package.json
index 08f5159011..ed434d3f22 100644
--- a/webapp/packages/plugin-connections-administration/package.json
+++ b/webapp/packages/plugin-connections-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-connections-administration/src/Administration/Connections/ConnectionsAdministrationService.ts b/webapp/packages/plugin-connections-administration/src/Administration/Connections/ConnectionsAdministrationService.ts
index ab6ffb2680..fd55b2ed51 100644
--- a/webapp/packages/plugin-connections-administration/src/Administration/Connections/ConnectionsAdministrationService.ts
+++ b/webapp/packages/plugin-connections-administration/src/Administration/Connections/ConnectionsAdministrationService.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-connections-administration/tsconfig.json b/webapp/packages/plugin-connections-administration/tsconfig.json
index da133662eb..991515d2cb 100644
--- a/webapp/packages/plugin-connections-administration/tsconfig.json
+++ b/webapp/packages/plugin-connections-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -68,7 +68,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-connections/package.json b/webapp/packages/plugin-connections/package.json
index a6525a81db..e12a4f4899 100644
--- a/webapp/packages/plugin-connections/package.json
+++ b/webapp/packages/plugin-connections/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-connections/src/Actions/ACTION_TREE_CREATE_CONNECTION.ts b/webapp/packages/plugin-connections/src/Actions/ACTION_TREE_CREATE_CONNECTION.ts
index 27edb90bc1..a0bea59cca 100644
--- a/webapp/packages/plugin-connections/src/Actions/ACTION_TREE_CREATE_CONNECTION.ts
+++ b/webapp/packages/plugin-connections/src/Actions/ACTION_TREE_CREATE_CONNECTION.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-connections/src/ContextMenu/ConnectionMenuBootstrap.ts b/webapp/packages/plugin-connections/src/ContextMenu/ConnectionMenuBootstrap.ts
index 96adf93dd2..7bb5ad008c 100644
--- a/webapp/packages/plugin-connections/src/ContextMenu/ConnectionMenuBootstrap.ts
+++ b/webapp/packages/plugin-connections/src/ContextMenu/ConnectionMenuBootstrap.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-connections/src/NavNodes/ConnectionFoldersBootstrap.ts b/webapp/packages/plugin-connections/src/NavNodes/ConnectionFoldersBootstrap.ts
index a70171e7a4..f0f82d009d 100644
--- a/webapp/packages/plugin-connections/src/NavNodes/ConnectionFoldersBootstrap.ts
+++ b/webapp/packages/plugin-connections/src/NavNodes/ConnectionFoldersBootstrap.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-connections/src/NavNodes/ConnectionNavNodeService.ts b/webapp/packages/plugin-connections/src/NavNodes/ConnectionNavNodeService.ts
index 6942c4c466..e9f455e649 100644
--- a/webapp/packages/plugin-connections/src/NavNodes/ConnectionNavNodeService.ts
+++ b/webapp/packages/plugin-connections/src/NavNodes/ConnectionNavNodeService.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-connections/src/index.ts b/webapp/packages/plugin-connections/src/index.ts
index 626d15be3d..f44f11e0a2 100644
--- a/webapp/packages/plugin-connections/src/index.ts
+++ b/webapp/packages/plugin-connections/src/index.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-connections/src/manifest.ts b/webapp/packages/plugin-connections/src/manifest.ts
index 0bf221c773..8ce2c16e00 100644
--- a/webapp/packages/plugin-connections/src/manifest.ts
+++ b/webapp/packages/plugin-connections/src/manifest.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-connections/tsconfig.json b/webapp/packages/plugin-connections/tsconfig.json
index 5789b4d494..8e0041aebd 100644
--- a/webapp/packages/plugin-connections/tsconfig.json
+++ b/webapp/packages/plugin-connections/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -86,7 +86,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-d3js/package.json b/webapp/packages/plugin-d3js/package.json
index de7b173e9e..b5af6da0f9 100644
--- a/webapp/packages/plugin-d3js/package.json
+++ b/webapp/packages/plugin-d3js/package.json
@@ -10,11 +10,11 @@
"description": "The plugin reexports d3js library and contains utility functions and components for d3js",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-d3js/tsconfig.json b/webapp/packages/plugin-d3js/tsconfig.json
index dd9fb34ea9..9ec23da0a4 100644
--- a/webapp/packages/plugin-d3js/tsconfig.json
+++ b/webapp/packages/plugin-d3js/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -23,7 +23,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-data-export/package.json b/webapp/packages/plugin-data-export/package.json
index 8d25a41c8f..9bab5ba2f4 100644
--- a/webapp/packages/plugin-data-export/package.json
+++ b/webapp/packages/plugin-data-export/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-data-export/src/DataExportMenuService.ts b/webapp/packages/plugin-data-export/src/DataExportMenuService.ts
index b423be9fad..3c73e84e5b 100644
--- a/webapp/packages/plugin-data-export/src/DataExportMenuService.ts
+++ b/webapp/packages/plugin-data-export/src/DataExportMenuService.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-data-export/tsconfig.json b/webapp/packages/plugin-data-export/tsconfig.json
index d09fb413b1..de5a6b15c1 100644
--- a/webapp/packages/plugin-data-export/tsconfig.json
+++ b/webapp/packages/plugin-data-export/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -65,7 +65,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-data-grid/package.json b/webapp/packages/plugin-data-grid/package.json
index b790abcaf7..a039037a46 100644
--- a/webapp/packages/plugin-data-grid/package.json
+++ b/webapp/packages/plugin-data-grid/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"lint-fix": "eslint ./src/ --ext .ts,.tsx --fix",
"test": "core-cli-test",
diff --git a/webapp/packages/plugin-data-grid/tsconfig.json b/webapp/packages/plugin-data-grid/tsconfig.json
index a7bb1e11f6..ac2ba5188e 100644
--- a/webapp/packages/plugin-data-grid/tsconfig.json
+++ b/webapp/packages/plugin-data-grid/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -32,7 +32,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-data-import/package.json b/webapp/packages/plugin-data-import/package.json
index bd3078d85d..b435ca9b57 100644
--- a/webapp/packages/plugin-data-import/package.json
+++ b/webapp/packages/plugin-data-import/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-data-import/tsconfig.json b/webapp/packages/plugin-data-import/tsconfig.json
index 7953f10c94..8234e96446 100644
--- a/webapp/packages/plugin-data-import/tsconfig.json
+++ b/webapp/packages/plugin-data-import/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -56,7 +56,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-data-spreadsheet-new/package.json b/webapp/packages/plugin-data-spreadsheet-new/package.json
index 6c44dad432..5a7d20fb97 100644
--- a/webapp/packages/plugin-data-spreadsheet-new/package.json
+++ b/webapp/packages/plugin-data-spreadsheet-new/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -47,10 +47,10 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
"@types/react": "^19",
"@types/react-dom": "^19",
"typescript": "^5",
- "typescript-plugin-css-modules": "^5"
+ "typescript-plugin-css-modules": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/plugin-data-spreadsheet-new/src/DataGridSettingsService.test.ts b/webapp/packages/plugin-data-spreadsheet-new/src/DataGridSettingsService.test.ts
index 019d8b9e2d..e275b205c4 100644
--- a/webapp/packages/plugin-data-spreadsheet-new/src/DataGridSettingsService.test.ts
+++ b/webapp/packages/plugin-data-spreadsheet-new/src/DataGridSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreAdministrationManifest } from '@cloudbeaver/core-administration';
// import { coreAppManifest } from '@cloudbeaver/core-app';
@@ -109,3 +109,5 @@
// expect(settings.hidden).toBe(testValueDeprecated);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('DataGridSettingsService', () => {});
diff --git a/webapp/packages/plugin-data-spreadsheet-new/tsconfig.json b/webapp/packages/plugin-data-spreadsheet-new/tsconfig.json
index 9b3e86fd6c..e0e3aa6d26 100644
--- a/webapp/packages/plugin-data-spreadsheet-new/tsconfig.json
+++ b/webapp/packages/plugin-data-spreadsheet-new/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -68,7 +68,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-data-viewer-result-set-grouping/package.json b/webapp/packages/plugin-data-viewer-result-set-grouping/package.json
index 61a1cdb444..2f05087648 100644
--- a/webapp/packages/plugin-data-viewer-result-set-grouping/package.json
+++ b/webapp/packages/plugin-data-viewer-result-set-grouping/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-data-viewer-result-set-grouping/tsconfig.json b/webapp/packages/plugin-data-viewer-result-set-grouping/tsconfig.json
index 22b30f94bb..35c15896ac 100644
--- a/webapp/packages/plugin-data-viewer-result-set-grouping/tsconfig.json
+++ b/webapp/packages/plugin-data-viewer-result-set-grouping/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -59,7 +59,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-data-viewer-result-trace-details/package.json b/webapp/packages/plugin-data-viewer-result-trace-details/package.json
index ee65400690..8121c672a5 100644
--- a/webapp/packages/plugin-data-viewer-result-trace-details/package.json
+++ b/webapp/packages/plugin-data-viewer-result-trace-details/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-data-viewer-result-trace-details/tsconfig.json b/webapp/packages/plugin-data-viewer-result-trace-details/tsconfig.json
index 30319f1574..e046136d79 100644
--- a/webapp/packages/plugin-data-viewer-result-trace-details/tsconfig.json
+++ b/webapp/packages/plugin-data-viewer-result-trace-details/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -41,7 +41,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-data-viewer/package.json b/webapp/packages/plugin-data-viewer/package.json
index 31588f8f0b..56834ba91c 100644
--- a/webapp/packages/plugin-data-viewer/package.json
+++ b/webapp/packages/plugin-data-viewer/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -51,9 +51,9 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
"@types/react": "^19",
"typescript": "^5",
- "typescript-plugin-css-modules": "^5"
+ "typescript-plugin-css-modules": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/plugin-data-viewer/src/DataViewerSettingsService.test.ts b/webapp/packages/plugin-data-viewer/src/DataViewerSettingsService.test.ts
index e674d51cc5..b3d0e282a6 100644
--- a/webapp/packages/plugin-data-viewer/src/DataViewerSettingsService.test.ts
+++ b/webapp/packages/plugin-data-viewer/src/DataViewerSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { beforeAll, describe, expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreAdministrationManifest } from '@cloudbeaver/core-administration';
// import { coreAppManifest } from '@cloudbeaver/core-app';
@@ -142,3 +142,5 @@
// expect(settingsService.getDefaultRowsCount(1100)).toBe(1000);
// });
// });
+
+describe.skip('DataViewerSettingsService', () => {});
diff --git a/webapp/packages/plugin-data-viewer/tsconfig.json b/webapp/packages/plugin-data-viewer/tsconfig.json
index 28275d1eb6..3da75bf42f 100644
--- a/webapp/packages/plugin-data-viewer/tsconfig.json
+++ b/webapp/packages/plugin-data-viewer/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -83,7 +83,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-datasource-context-switch/package.json b/webapp/packages/plugin-datasource-context-switch/package.json
index 3e7bda3e1d..24b36f0672 100644
--- a/webapp/packages/plugin-datasource-context-switch/package.json
+++ b/webapp/packages/plugin-datasource-context-switch/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-datasource-context-switch/src/ConnectionSchemaManager/ConnectionSchemaManagerBootstrap.ts b/webapp/packages/plugin-datasource-context-switch/src/ConnectionSchemaManager/ConnectionSchemaManagerBootstrap.ts
index a73379b0f9..2e1d65eded 100644
--- a/webapp/packages/plugin-datasource-context-switch/src/ConnectionSchemaManager/ConnectionSchemaManagerBootstrap.ts
+++ b/webapp/packages/plugin-datasource-context-switch/src/ConnectionSchemaManager/ConnectionSchemaManagerBootstrap.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-datasource-context-switch/src/ConnectionSchemaManager/ConnectionSchemaManagerService.ts b/webapp/packages/plugin-datasource-context-switch/src/ConnectionSchemaManager/ConnectionSchemaManagerService.ts
index 3bdf20043b..b631dcfd19 100644
--- a/webapp/packages/plugin-datasource-context-switch/src/ConnectionSchemaManager/ConnectionSchemaManagerService.ts
+++ b/webapp/packages/plugin-datasource-context-switch/src/ConnectionSchemaManager/ConnectionSchemaManagerService.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-datasource-context-switch/tsconfig.json b/webapp/packages/plugin-datasource-context-switch/tsconfig.json
index fb137ce3aa..c1bd8eaa4d 100644
--- a/webapp/packages/plugin-datasource-context-switch/tsconfig.json
+++ b/webapp/packages/plugin-datasource-context-switch/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -65,7 +65,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-datasource-transaction-manager/package.json b/webapp/packages/plugin-datasource-transaction-manager/package.json
index 473443ce53..7a631df947 100644
--- a/webapp/packages/plugin-datasource-transaction-manager/package.json
+++ b/webapp/packages/plugin-datasource-transaction-manager/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-datasource-transaction-manager/tsconfig.json b/webapp/packages/plugin-datasource-transaction-manager/tsconfig.json
index 1067858369..01db36eb75 100644
--- a/webapp/packages/plugin-datasource-transaction-manager/tsconfig.json
+++ b/webapp/packages/plugin-datasource-transaction-manager/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -77,7 +77,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-ddl-viewer/package.json b/webapp/packages/plugin-ddl-viewer/package.json
index f1fa2bb687..905946a164 100644
--- a/webapp/packages/plugin-ddl-viewer/package.json
+++ b/webapp/packages/plugin-ddl-viewer/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-ddl-viewer/tsconfig.json b/webapp/packages/plugin-ddl-viewer/tsconfig.json
index 0b6c52859c..5b47f5a1b9 100644
--- a/webapp/packages/plugin-ddl-viewer/tsconfig.json
+++ b/webapp/packages/plugin-ddl-viewer/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -65,7 +65,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-devtools/package.json b/webapp/packages/plugin-devtools/package.json
index a0c7a899f5..97865a28da 100644
--- a/webapp/packages/plugin-devtools/package.json
+++ b/webapp/packages/plugin-devtools/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-devtools/tsconfig.json b/webapp/packages/plugin-devtools/tsconfig.json
index 878e12e1b1..02f289d126 100644
--- a/webapp/packages/plugin-devtools/tsconfig.json
+++ b/webapp/packages/plugin-devtools/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -50,7 +50,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-gis-viewer/package.json b/webapp/packages/plugin-gis-viewer/package.json
index 6261431ddd..d296843385 100644
--- a/webapp/packages/plugin-gis-viewer/package.json
+++ b/webapp/packages/plugin-gis-viewer/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-gis-viewer/tsconfig.json b/webapp/packages/plugin-gis-viewer/tsconfig.json
index 9c69aab1fd..0611736d3a 100644
--- a/webapp/packages/plugin-gis-viewer/tsconfig.json
+++ b/webapp/packages/plugin-gis-viewer/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -38,7 +38,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-help/package.json b/webapp/packages/plugin-help/package.json
index 4237217cff..2e5764c993 100644
--- a/webapp/packages/plugin-help/package.json
+++ b/webapp/packages/plugin-help/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-help/tsconfig.json b/webapp/packages/plugin-help/tsconfig.json
index efcc1deeb6..0b9f848233 100644
--- a/webapp/packages/plugin-help/tsconfig.json
+++ b/webapp/packages/plugin-help/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -71,7 +71,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-holidays-administration/package.json b/webapp/packages/plugin-holidays-administration/package.json
index 6a5f99f9b2..3d3f34e781 100644
--- a/webapp/packages/plugin-holidays-administration/package.json
+++ b/webapp/packages/plugin-holidays-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-holidays-administration/tsconfig.json b/webapp/packages/plugin-holidays-administration/tsconfig.json
index e3a39a6765..9b0eb167ec 100644
--- a/webapp/packages/plugin-holidays-administration/tsconfig.json
+++ b/webapp/packages/plugin-holidays-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-holidays/package.json b/webapp/packages/plugin-holidays/package.json
index 744bf9d9c0..75b6d023f5 100644
--- a/webapp/packages/plugin-holidays/package.json
+++ b/webapp/packages/plugin-holidays/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-holidays/tsconfig.json b/webapp/packages/plugin-holidays/tsconfig.json
index 448379c85d..3b64264d37 100644
--- a/webapp/packages/plugin-holidays/tsconfig.json
+++ b/webapp/packages/plugin-holidays/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -32,7 +32,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-localization/package.json b/webapp/packages/plugin-localization/package.json
index d9b2029fe0..ac4910c82f 100644
--- a/webapp/packages/plugin-localization/package.json
+++ b/webapp/packages/plugin-localization/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-localization/tsconfig.json b/webapp/packages/plugin-localization/tsconfig.json
index f5c4428306..2fa192db82 100644
--- a/webapp/packages/plugin-localization/tsconfig.json
+++ b/webapp/packages/plugin-localization/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-log-viewer/package.json b/webapp/packages/plugin-log-viewer/package.json
index 3911774991..601f648fb1 100644
--- a/webapp/packages/plugin-log-viewer/package.json
+++ b/webapp/packages/plugin-log-viewer/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -40,9 +40,9 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
"@types/react": "^19",
"typescript": "^5",
- "typescript-plugin-css-modules": "^5"
+ "typescript-plugin-css-modules": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/plugin-log-viewer/src/LogViewer/LogViewerSettingsService.test.ts b/webapp/packages/plugin-log-viewer/src/LogViewer/LogViewerSettingsService.test.ts
index 51f1e7b1f8..c0dd1f7e4f 100644
--- a/webapp/packages/plugin-log-viewer/src/LogViewer/LogViewerSettingsService.test.ts
+++ b/webapp/packages/plugin-log-viewer/src/LogViewer/LogViewerSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreAppManifest } from '@cloudbeaver/core-app';
// import { coreAuthenticationManifest } from '@cloudbeaver/core-authentication';
@@ -92,3 +92,5 @@
// expect(settings.disabled).toBe(true);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('LogViewerSettingsService', () => {});
diff --git a/webapp/packages/plugin-log-viewer/tsconfig.json b/webapp/packages/plugin-log-viewer/tsconfig.json
index 2b055bc041..d6c567f109 100644
--- a/webapp/packages/plugin-log-viewer/tsconfig.json
+++ b/webapp/packages/plugin-log-viewer/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -53,7 +53,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-navigation-tabs/package.json b/webapp/packages/plugin-navigation-tabs/package.json
index 4a00b04c30..632528822f 100644
--- a/webapp/packages/plugin-navigation-tabs/package.json
+++ b/webapp/packages/plugin-navigation-tabs/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-navigation-tabs/tsconfig.json b/webapp/packages/plugin-navigation-tabs/tsconfig.json
index aa1e6c45e9..eb30f977b5 100644
--- a/webapp/packages/plugin-navigation-tabs/tsconfig.json
+++ b/webapp/packages/plugin-navigation-tabs/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -62,7 +62,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-navigation-tree-filters/package.json b/webapp/packages/plugin-navigation-tree-filters/package.json
index 659606e6f5..b4736c7cf6 100644
--- a/webapp/packages/plugin-navigation-tree-filters/package.json
+++ b/webapp/packages/plugin-navigation-tree-filters/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-navigation-tree-filters/tsconfig.json b/webapp/packages/plugin-navigation-tree-filters/tsconfig.json
index 7465050b9c..b7912f0f6a 100644
--- a/webapp/packages/plugin-navigation-tree-filters/tsconfig.json
+++ b/webapp/packages/plugin-navigation-tree-filters/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -47,7 +47,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-navigation-tree-rm/package.json b/webapp/packages/plugin-navigation-tree-rm/package.json
index 39e7e6bf64..929a65d0c5 100644
--- a/webapp/packages/plugin-navigation-tree-rm/package.json
+++ b/webapp/packages/plugin-navigation-tree-rm/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-navigation-tree-rm/src/Tree/ResourceManagerTree.tsx b/webapp/packages/plugin-navigation-tree-rm/src/Tree/ResourceManagerTree.tsx
index 9fa89fb0d9..cb0636cd02 100644
--- a/webapp/packages/plugin-navigation-tree-rm/src/Tree/ResourceManagerTree.tsx
+++ b/webapp/packages/plugin-navigation-tree-rm/src/Tree/ResourceManagerTree.tsx
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-navigation-tree-rm/tsconfig.json b/webapp/packages/plugin-navigation-tree-rm/tsconfig.json
index ecc7e5fdf8..4ad1f3e02c 100644
--- a/webapp/packages/plugin-navigation-tree-rm/tsconfig.json
+++ b/webapp/packages/plugin-navigation-tree-rm/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -74,7 +74,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-navigation-tree/package.json b/webapp/packages/plugin-navigation-tree/package.json
index 85f64eb3d8..abb33605fe 100644
--- a/webapp/packages/plugin-navigation-tree/package.json
+++ b/webapp/packages/plugin-navigation-tree/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -45,9 +45,9 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
"@types/react": "^19",
"typescript": "^5",
- "typescript-plugin-css-modules": "^5"
+ "typescript-plugin-css-modules": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/plugin-navigation-tree/src/NavigationTree/ElementsTree/NavigationTreeNode/TreeNodeMenu/TreeNodeMenu.tsx b/webapp/packages/plugin-navigation-tree/src/NavigationTree/ElementsTree/NavigationTreeNode/TreeNodeMenu/TreeNodeMenu.tsx
index 86f3dc4b97..55a2b2a73d 100644
--- a/webapp/packages/plugin-navigation-tree/src/NavigationTree/ElementsTree/NavigationTreeNode/TreeNodeMenu/TreeNodeMenu.tsx
+++ b/webapp/packages/plugin-navigation-tree/src/NavigationTree/ElementsTree/NavigationTreeNode/TreeNodeMenu/TreeNodeMenu.tsx
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-navigation-tree/src/NavigationTree/ElementsTree/useElementsTree.ts b/webapp/packages/plugin-navigation-tree/src/NavigationTree/ElementsTree/useElementsTree.ts
index 183ecd117e..769001eb0f 100644
--- a/webapp/packages/plugin-navigation-tree/src/NavigationTree/ElementsTree/useElementsTree.ts
+++ b/webapp/packages/plugin-navigation-tree/src/NavigationTree/ElementsTree/useElementsTree.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-navigation-tree/src/NavigationTree/NavigationTreeService.ts b/webapp/packages/plugin-navigation-tree/src/NavigationTree/NavigationTreeService.ts
index 197ac3004c..462c409dfa 100644
--- a/webapp/packages/plugin-navigation-tree/src/NavigationTree/NavigationTreeService.ts
+++ b/webapp/packages/plugin-navigation-tree/src/NavigationTree/NavigationTreeService.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-navigation-tree/src/NodesManager/NavNodeView/NavNodeViewService.test.ts b/webapp/packages/plugin-navigation-tree/src/NodesManager/NavNodeView/NavNodeViewService.test.ts
index 14d929ded7..bb304fd479 100644
--- a/webapp/packages/plugin-navigation-tree/src/NodesManager/NavNodeView/NavNodeViewService.test.ts
+++ b/webapp/packages/plugin-navigation-tree/src/NodesManager/NavNodeView/NavNodeViewService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { describe, expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreAdministrationManifest } from '@cloudbeaver/core-administration';
// import { coreAppManifest } from '@cloudbeaver/core-app';
@@ -97,3 +97,5 @@
// expect(duplicates).toEqual(['0', '1', '2', '3']);
// });
// });
+
+describe.skip('NavNodeViewService', () => {});
diff --git a/webapp/packages/plugin-navigation-tree/tsconfig.json b/webapp/packages/plugin-navigation-tree/tsconfig.json
index 84020a522a..b2dff3d37a 100644
--- a/webapp/packages/plugin-navigation-tree/tsconfig.json
+++ b/webapp/packages/plugin-navigation-tree/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -68,7 +68,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-object-viewer-nav-tree-link/package.json b/webapp/packages/plugin-object-viewer-nav-tree-link/package.json
index 711812f8fc..4276cfcf35 100644
--- a/webapp/packages/plugin-object-viewer-nav-tree-link/package.json
+++ b/webapp/packages/plugin-object-viewer-nav-tree-link/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-object-viewer-nav-tree-link/tsconfig.json b/webapp/packages/plugin-object-viewer-nav-tree-link/tsconfig.json
index 3b3f8257d0..427df9c4e6 100644
--- a/webapp/packages/plugin-object-viewer-nav-tree-link/tsconfig.json
+++ b/webapp/packages/plugin-object-viewer-nav-tree-link/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -38,7 +38,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-object-viewer/package.json b/webapp/packages/plugin-object-viewer/package.json
index ff92ab089f..6265a7a714 100644
--- a/webapp/packages/plugin-object-viewer/package.json
+++ b/webapp/packages/plugin-object-viewer/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-object-viewer/src/ObjectViewerTabService.ts b/webapp/packages/plugin-object-viewer/src/ObjectViewerTabService.ts
index a2c57085d3..d0c490f284 100644
--- a/webapp/packages/plugin-object-viewer/src/ObjectViewerTabService.ts
+++ b/webapp/packages/plugin-object-viewer/src/ObjectViewerTabService.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-object-viewer/tsconfig.json b/webapp/packages/plugin-object-viewer/tsconfig.json
index c16cacd6e3..85ca01f50a 100644
--- a/webapp/packages/plugin-object-viewer/tsconfig.json
+++ b/webapp/packages/plugin-object-viewer/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -74,7 +74,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-product-information-administration/package.json b/webapp/packages/plugin-product-information-administration/package.json
index 3dcfe72491..60a5b79b2a 100644
--- a/webapp/packages/plugin-product-information-administration/package.json
+++ b/webapp/packages/plugin-product-information-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-product-information-administration/tsconfig.json b/webapp/packages/plugin-product-information-administration/tsconfig.json
index 4ef46fa9e1..5bc73f4d6c 100644
--- a/webapp/packages/plugin-product-information-administration/tsconfig.json
+++ b/webapp/packages/plugin-product-information-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -47,7 +47,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-product/package.json b/webapp/packages/plugin-product/package.json
index d50c412bbe..25302d3d77 100644
--- a/webapp/packages/plugin-product/package.json
+++ b/webapp/packages/plugin-product/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-product/tsconfig.json b/webapp/packages/plugin-product/tsconfig.json
index 7418668bc6..75ed829737 100644
--- a/webapp/packages/plugin-product/tsconfig.json
+++ b/webapp/packages/plugin-product/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -50,7 +50,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-projects/package.json b/webapp/packages/plugin-projects/package.json
index be316d3d0f..4106e6de12 100644
--- a/webapp/packages/plugin-projects/package.json
+++ b/webapp/packages/plugin-projects/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-projects/tsconfig.json b/webapp/packages/plugin-projects/tsconfig.json
index 7f3ecf9085..7136b01d6b 100644
--- a/webapp/packages/plugin-projects/tsconfig.json
+++ b/webapp/packages/plugin-projects/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -41,7 +41,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-resource-manager-administration/package.json b/webapp/packages/plugin-resource-manager-administration/package.json
index 4aa4cd532b..d0d560064b 100644
--- a/webapp/packages/plugin-resource-manager-administration/package.json
+++ b/webapp/packages/plugin-resource-manager-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-resource-manager-administration/tsconfig.json b/webapp/packages/plugin-resource-manager-administration/tsconfig.json
index 2edc005a01..44c0807d5a 100644
--- a/webapp/packages/plugin-resource-manager-administration/tsconfig.json
+++ b/webapp/packages/plugin-resource-manager-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -32,7 +32,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-resource-manager-scripts/package.json b/webapp/packages/plugin-resource-manager-scripts/package.json
index 523fbb79b0..4ba227b615 100644
--- a/webapp/packages/plugin-resource-manager-scripts/package.json
+++ b/webapp/packages/plugin-resource-manager-scripts/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-resource-manager-scripts/src/PluginBootstrap.ts b/webapp/packages/plugin-resource-manager-scripts/src/PluginBootstrap.ts
index 11e2b79982..c220e3a02b 100644
--- a/webapp/packages/plugin-resource-manager-scripts/src/PluginBootstrap.ts
+++ b/webapp/packages/plugin-resource-manager-scripts/src/PluginBootstrap.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-resource-manager-scripts/tsconfig.json b/webapp/packages/plugin-resource-manager-scripts/tsconfig.json
index ce877f056e..00a363976f 100644
--- a/webapp/packages/plugin-resource-manager-scripts/tsconfig.json
+++ b/webapp/packages/plugin-resource-manager-scripts/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -74,7 +74,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-resource-manager/package.json b/webapp/packages/plugin-resource-manager/package.json
index 48da3685ef..329c930577 100644
--- a/webapp/packages/plugin-resource-manager/package.json
+++ b/webapp/packages/plugin-resource-manager/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -36,7 +36,7 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
- "typescript": "^5"
+ "typescript": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/plugin-resource-manager/src/ResourceManagerSettingsService.test.ts b/webapp/packages/plugin-resource-manager/src/ResourceManagerSettingsService.test.ts
index bd10252a53..414da98a99 100644
--- a/webapp/packages/plugin-resource-manager/src/ResourceManagerSettingsService.test.ts
+++ b/webapp/packages/plugin-resource-manager/src/ResourceManagerSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreClientActivityManifest } from '@cloudbeaver/core-client-activity';
// import { coreLocalizationManifest } from '@cloudbeaver/core-localization';
@@ -72,3 +72,5 @@
// expect(settings.disabled).toBe(testValueDeprecated);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('ResourceManagerSettingsService', () => {});
diff --git a/webapp/packages/plugin-resource-manager/tsconfig.json b/webapp/packages/plugin-resource-manager/tsconfig.json
index f72e003f0f..25ef51d721 100644
--- a/webapp/packages/plugin-resource-manager/tsconfig.json
+++ b/webapp/packages/plugin-resource-manager/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -50,7 +50,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-root/package.json b/webapp/packages/plugin-root/package.json
index 57888d2aa2..5c8e3baf8c 100644
--- a/webapp/packages/plugin-root/package.json
+++ b/webapp/packages/plugin-root/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-root/tsconfig.json b/webapp/packages/plugin-root/tsconfig.json
index 4681815b52..fb8933e9c6 100644
--- a/webapp/packages/plugin-root/tsconfig.json
+++ b/webapp/packages/plugin-root/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -44,7 +44,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-session-expiration/package.json b/webapp/packages/plugin-session-expiration/package.json
index d182867cfe..956ef174cc 100644
--- a/webapp/packages/plugin-session-expiration/package.json
+++ b/webapp/packages/plugin-session-expiration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-session-expiration/tsconfig.json b/webapp/packages/plugin-session-expiration/tsconfig.json
index 2e0b0a7ac6..4ca24a72e9 100644
--- a/webapp/packages/plugin-session-expiration/tsconfig.json
+++ b/webapp/packages/plugin-session-expiration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -50,7 +50,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-settings-administration/package.json b/webapp/packages/plugin-settings-administration/package.json
index 2cf47c9a36..85dc2bd4ab 100644
--- a/webapp/packages/plugin-settings-administration/package.json
+++ b/webapp/packages/plugin-settings-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-settings-administration/tsconfig.json b/webapp/packages/plugin-settings-administration/tsconfig.json
index cfad8fdf80..e1ce88c0a5 100644
--- a/webapp/packages/plugin-settings-administration/tsconfig.json
+++ b/webapp/packages/plugin-settings-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -44,7 +44,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-settings-menu-administration/package.json b/webapp/packages/plugin-settings-menu-administration/package.json
index 61f5f884f0..95d4ecda87 100644
--- a/webapp/packages/plugin-settings-menu-administration/package.json
+++ b/webapp/packages/plugin-settings-menu-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-settings-menu-administration/tsconfig.json b/webapp/packages/plugin-settings-menu-administration/tsconfig.json
index dd9fb34ea9..9ec23da0a4 100644
--- a/webapp/packages/plugin-settings-menu-administration/tsconfig.json
+++ b/webapp/packages/plugin-settings-menu-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -23,7 +23,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-settings-menu/package.json b/webapp/packages/plugin-settings-menu/package.json
index 02238cb108..0b33e88ae6 100644
--- a/webapp/packages/plugin-settings-menu/package.json
+++ b/webapp/packages/plugin-settings-menu/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-settings-menu/tsconfig.json b/webapp/packages/plugin-settings-menu/tsconfig.json
index 84b3182eea..356e26c162 100644
--- a/webapp/packages/plugin-settings-menu/tsconfig.json
+++ b/webapp/packages/plugin-settings-menu/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -35,7 +35,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-settings-panel/package.json b/webapp/packages/plugin-settings-panel/package.json
index f4c21c5e54..ea05048483 100644
--- a/webapp/packages/plugin-settings-panel/package.json
+++ b/webapp/packages/plugin-settings-panel/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-settings-panel/tsconfig.json b/webapp/packages/plugin-settings-panel/tsconfig.json
index 64b04b2f9b..11b2baf562 100644
--- a/webapp/packages/plugin-settings-panel/tsconfig.json
+++ b/webapp/packages/plugin-settings-panel/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -38,7 +38,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-sql-editor-navigation-tab-script/package.json b/webapp/packages/plugin-sql-editor-navigation-tab-script/package.json
index da0a0af96e..301299501c 100644
--- a/webapp/packages/plugin-sql-editor-navigation-tab-script/package.json
+++ b/webapp/packages/plugin-sql-editor-navigation-tab-script/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-sql-editor-navigation-tab-script/tsconfig.json b/webapp/packages/plugin-sql-editor-navigation-tab-script/tsconfig.json
index 465f09f286..a200229157 100644
--- a/webapp/packages/plugin-sql-editor-navigation-tab-script/tsconfig.json
+++ b/webapp/packages/plugin-sql-editor-navigation-tab-script/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -89,7 +89,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-sql-editor-navigation-tab/package.json b/webapp/packages/plugin-sql-editor-navigation-tab/package.json
index a4820a85a0..311ccbdaa4 100644
--- a/webapp/packages/plugin-sql-editor-navigation-tab/package.json
+++ b/webapp/packages/plugin-sql-editor-navigation-tab/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-sql-editor-navigation-tab/src/SqlEditorBootstrap.ts b/webapp/packages/plugin-sql-editor-navigation-tab/src/SqlEditorBootstrap.ts
index 45bb2fed94..8c2903b369 100644
--- a/webapp/packages/plugin-sql-editor-navigation-tab/src/SqlEditorBootstrap.ts
+++ b/webapp/packages/plugin-sql-editor-navigation-tab/src/SqlEditorBootstrap.ts
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
diff --git a/webapp/packages/plugin-sql-editor-navigation-tab/tsconfig.json b/webapp/packages/plugin-sql-editor-navigation-tab/tsconfig.json
index 8b2e7b24ac..ec21f96030 100644
--- a/webapp/packages/plugin-sql-editor-navigation-tab/tsconfig.json
+++ b/webapp/packages/plugin-sql-editor-navigation-tab/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -83,7 +83,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-sql-editor-new/.gitignore b/webapp/packages/plugin-sql-editor-new/.gitignore
index 72ea21f191..4ef7eb1488 100644
--- a/webapp/packages/plugin-sql-editor-new/.gitignore
+++ b/webapp/packages/plugin-sql-editor-new/.gitignore
@@ -5,8 +5,8 @@
/coverage
# production
-!lib/
-!lib/lib
+lib
+dist
# misc
.DS_Store
diff --git a/webapp/packages/plugin-sql-editor-new/package.json b/webapp/packages/plugin-sql-editor-new/package.json
index c713035ad7..182915b81a 100644
--- a/webapp/packages/plugin-sql-editor-new/package.json
+++ b/webapp/packages/plugin-sql-editor-new/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-sql-editor-new/tsconfig.json b/webapp/packages/plugin-sql-editor-new/tsconfig.json
index cd142b526f..54e25c144d 100644
--- a/webapp/packages/plugin-sql-editor-new/tsconfig.json
+++ b/webapp/packages/plugin-sql-editor-new/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -50,7 +50,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-sql-editor-screen/package.json b/webapp/packages/plugin-sql-editor-screen/package.json
index 86f72201f2..4146af7b77 100644
--- a/webapp/packages/plugin-sql-editor-screen/package.json
+++ b/webapp/packages/plugin-sql-editor-screen/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-sql-editor-screen/tsconfig.json b/webapp/packages/plugin-sql-editor-screen/tsconfig.json
index e4ab7d6af9..2e41a54885 100644
--- a/webapp/packages/plugin-sql-editor-screen/tsconfig.json
+++ b/webapp/packages/plugin-sql-editor-screen/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -59,7 +59,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-sql-editor/package.json b/webapp/packages/plugin-sql-editor/package.json
index 6155f09f9f..b18b8ad136 100644
--- a/webapp/packages/plugin-sql-editor/package.json
+++ b/webapp/packages/plugin-sql-editor/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
@@ -50,9 +50,9 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@types/jest": "^29",
"@types/react": "^19",
"typescript": "^5",
- "typescript-plugin-css-modules": "^5"
+ "typescript-plugin-css-modules": "^5",
+ "vitest": "^3"
}
}
diff --git a/webapp/packages/plugin-sql-editor/src/SqlEditorSettingsService.test.ts b/webapp/packages/plugin-sql-editor/src/SqlEditorSettingsService.test.ts
index 1976ab15d7..9a7b20e492 100644
--- a/webapp/packages/plugin-sql-editor/src/SqlEditorSettingsService.test.ts
+++ b/webapp/packages/plugin-sql-editor/src/SqlEditorSettingsService.test.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-// import { expect, test } from '@jest/globals';
+import { describe } from 'vitest';
// import { coreAdministrationManifest } from '@cloudbeaver/core-administration';
// import { coreAppManifest } from '@cloudbeaver/core-app';
@@ -109,3 +109,5 @@
// expect(settings.maxFileSize).toBe(testValueDeprecated);
// expectDeprecatedSettingMessage();
// });
+
+describe.skip('SqlEditorSettingsService', () => {});
diff --git a/webapp/packages/plugin-sql-editor/tsconfig.json b/webapp/packages/plugin-sql-editor/tsconfig.json
index f6100c012e..dcca07302f 100644
--- a/webapp/packages/plugin-sql-editor/tsconfig.json
+++ b/webapp/packages/plugin-sql-editor/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -83,7 +83,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-sql-generator/package.json b/webapp/packages/plugin-sql-generator/package.json
index 0b852fb8f7..adab39300c 100644
--- a/webapp/packages/plugin-sql-generator/package.json
+++ b/webapp/packages/plugin-sql-generator/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-sql-generator/tsconfig.json b/webapp/packages/plugin-sql-generator/tsconfig.json
index de82b655a2..742e07d64c 100644
--- a/webapp/packages/plugin-sql-generator/tsconfig.json
+++ b/webapp/packages/plugin-sql-generator/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -62,7 +62,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-sso/package.json b/webapp/packages/plugin-sso/package.json
index bd5316056d..d4b238ba1a 100644
--- a/webapp/packages/plugin-sso/package.json
+++ b/webapp/packages/plugin-sso/package.json
@@ -2,7 +2,7 @@
"name": "@cloudbeaver/plugin-sso",
"type": "module",
"sideEffects": [
- "./dist/index.js",
+ "./lib/index.js",
"src/**/*.css",
"src/**/*.scss",
"public/**/*"
@@ -11,11 +11,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-sso/tsconfig.json b/webapp/packages/plugin-sso/tsconfig.json
index dd9fb34ea9..9ec23da0a4 100644
--- a/webapp/packages/plugin-sso/tsconfig.json
+++ b/webapp/packages/plugin-sso/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -23,7 +23,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-system-information-administration/package.json b/webapp/packages/plugin-system-information-administration/package.json
index 5a4ba0e5d5..85f4819fcd 100644
--- a/webapp/packages/plugin-system-information-administration/package.json
+++ b/webapp/packages/plugin-system-information-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
diff --git a/webapp/packages/plugin-system-information-administration/tsconfig.json b/webapp/packages/plugin-system-information-administration/tsconfig.json
index 23c409d260..e9864cba9c 100644
--- a/webapp/packages/plugin-system-information-administration/tsconfig.json
+++ b/webapp/packages/plugin-system-information-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -47,7 +47,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-task-manager/package.json b/webapp/packages/plugin-task-manager/package.json
index 8ac441f59b..7dfdc96748 100644
--- a/webapp/packages/plugin-task-manager/package.json
+++ b/webapp/packages/plugin-task-manager/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-task-manager/tsconfig.json b/webapp/packages/plugin-task-manager/tsconfig.json
index 1f94bae4ec..a0cc805913 100644
--- a/webapp/packages/plugin-task-manager/tsconfig.json
+++ b/webapp/packages/plugin-task-manager/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -35,7 +35,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-theme/package.json b/webapp/packages/plugin-theme/package.json
index 9f89ffcb28..95e4e92ac2 100644
--- a/webapp/packages/plugin-theme/package.json
+++ b/webapp/packages/plugin-theme/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-theme/tsconfig.json b/webapp/packages/plugin-theme/tsconfig.json
index dd9fb34ea9..9ec23da0a4 100644
--- a/webapp/packages/plugin-theme/tsconfig.json
+++ b/webapp/packages/plugin-theme/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -23,7 +23,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-tools-panel/package.json b/webapp/packages/plugin-tools-panel/package.json
index c28d42a27a..d3dbcf2ba6 100644
--- a/webapp/packages/plugin-tools-panel/package.json
+++ b/webapp/packages/plugin-tools-panel/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-tools-panel/tsconfig.json b/webapp/packages/plugin-tools-panel/tsconfig.json
index b051951022..4bf974a2f7 100644
--- a/webapp/packages/plugin-tools-panel/tsconfig.json
+++ b/webapp/packages/plugin-tools-panel/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -47,7 +47,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-top-app-bar-administration/package.json b/webapp/packages/plugin-top-app-bar-administration/package.json
index b58eeb146c..79f7d5cb6b 100644
--- a/webapp/packages/plugin-top-app-bar-administration/package.json
+++ b/webapp/packages/plugin-top-app-bar-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-top-app-bar-administration/tsconfig.json b/webapp/packages/plugin-top-app-bar-administration/tsconfig.json
index 141258c350..6e6c870de0 100644
--- a/webapp/packages/plugin-top-app-bar-administration/tsconfig.json
+++ b/webapp/packages/plugin-top-app-bar-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-top-app-bar/package.json b/webapp/packages/plugin-top-app-bar/package.json
index 6026ff114a..f4132e6f76 100644
--- a/webapp/packages/plugin-top-app-bar/package.json
+++ b/webapp/packages/plugin-top-app-bar/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-top-app-bar/tsconfig.json b/webapp/packages/plugin-top-app-bar/tsconfig.json
index ba3cbdf082..c882120461 100644
--- a/webapp/packages/plugin-top-app-bar/tsconfig.json
+++ b/webapp/packages/plugin-top-app-bar/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -38,7 +38,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-user-profile-administration/package.json b/webapp/packages/plugin-user-profile-administration/package.json
index 1e81b5f09a..506ecf68d5 100644
--- a/webapp/packages/plugin-user-profile-administration/package.json
+++ b/webapp/packages/plugin-user-profile-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-user-profile-administration/tsconfig.json b/webapp/packages/plugin-user-profile-administration/tsconfig.json
index b075318691..f20c1bb2ba 100644
--- a/webapp/packages/plugin-user-profile-administration/tsconfig.json
+++ b/webapp/packages/plugin-user-profile-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -29,7 +29,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-user-profile-settings/package.json b/webapp/packages/plugin-user-profile-settings/package.json
index 9565307328..97608d64ca 100644
--- a/webapp/packages/plugin-user-profile-settings/package.json
+++ b/webapp/packages/plugin-user-profile-settings/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-user-profile-settings/tsconfig.json b/webapp/packages/plugin-user-profile-settings/tsconfig.json
index 90f74a277d..0f92912720 100644
--- a/webapp/packages/plugin-user-profile-settings/tsconfig.json
+++ b/webapp/packages/plugin-user-profile-settings/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -53,7 +53,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-user-profile/package.json b/webapp/packages/plugin-user-profile/package.json
index 387b71a230..3c899e3e81 100644
--- a/webapp/packages/plugin-user-profile/package.json
+++ b/webapp/packages/plugin-user-profile/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-user-profile/tsconfig.json b/webapp/packages/plugin-user-profile/tsconfig.json
index 784d1b4642..cd44907fa1 100644
--- a/webapp/packages/plugin-user-profile/tsconfig.json
+++ b/webapp/packages/plugin-user-profile/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -65,7 +65,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-version-update-administration/package.json b/webapp/packages/plugin-version-update-administration/package.json
index b096cd2022..712f6ac8e4 100644
--- a/webapp/packages/plugin-version-update-administration/package.json
+++ b/webapp/packages/plugin-version-update-administration/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-version-update-administration/tsconfig.json b/webapp/packages/plugin-version-update-administration/tsconfig.json
index 1333210ea6..c3f81bebff 100644
--- a/webapp/packages/plugin-version-update-administration/tsconfig.json
+++ b/webapp/packages/plugin-version-update-administration/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -50,7 +50,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/plugin-version/package.json b/webapp/packages/plugin-version/package.json
index cd711d8d8b..5f452f5752 100644
--- a/webapp/packages/plugin-version/package.json
+++ b/webapp/packages/plugin-version/package.json
@@ -10,11 +10,11 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/plugin-version/tsconfig.json b/webapp/packages/plugin-version/tsconfig.json
index dd9fb34ea9..9ec23da0a4 100644
--- a/webapp/packages/plugin-version/tsconfig.json
+++ b/webapp/packages/plugin-version/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -23,7 +23,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/product-base/package.json b/webapp/packages/product-base/package.json
index abdd0158a8..4cfad7d63b 100644
--- a/webapp/packages/product-base/package.json
+++ b/webapp/packages/product-base/package.json
@@ -10,8 +10,8 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js",
- "./*.js": "./dist/*.js",
+ ".": "./lib/index.js",
+ "./*.js": "./lib/*.js",
"./*": "./*"
},
"imports": {
@@ -19,7 +19,7 @@
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/product-base/tsconfig.json b/webapp/packages/product-base/tsconfig.json
index 9a62b60153..b11e0d4e65 100644
--- a/webapp/packages/product-base/tsconfig.json
+++ b/webapp/packages/product-base/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -20,7 +20,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/product-default-impl/package.json b/webapp/packages/product-default-impl/package.json
index d6794633ac..15f4a0b5c8 100644
--- a/webapp/packages/product-default-impl/package.json
+++ b/webapp/packages/product-default-impl/package.json
@@ -2,7 +2,7 @@
"name": "@cloudbeaver/product-default-impl",
"type": "module",
"sideEffects": [
- "./dist/index.js",
+ "./lib/index.js",
"src/**/*.css",
"src/**/*.scss",
"public/**/*"
@@ -11,11 +11,11 @@
"description": "CloudBeaver Community",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"validate-dependencies": "core-cli-validate-dependencies"
},
diff --git a/webapp/packages/product-default-impl/tsconfig.json b/webapp/packages/product-default-impl/tsconfig.json
index 287d74c854..3c85278418 100644
--- a/webapp/packages/product-default-impl/tsconfig.json
+++ b/webapp/packages/product-default-impl/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -227,7 +227,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/packages/product-default/package.json b/webapp/packages/product-default/package.json
index 63d58d4168..9487f489ba 100644
--- a/webapp/packages/product-default/package.json
+++ b/webapp/packages/product-default/package.json
@@ -18,7 +18,7 @@
"extends @cloudbeaver/browserslist-config"
],
"scripts": {
- "build": "rimraf --glob lib && yarn workspaces foreach -Ap --include '@cloudbeaver/core-sdk' run gql:gen && yarn tsc -b",
+ "build": "rimraf --glob dist && yarn workspaces foreach -Ap --include '@cloudbeaver/core-sdk' run gql:gen && yarn tsc -b",
"bundle": "yarn build && vite build --mode production",
"dev": "yarn build && concurrently -P -k \"yarn workspaces foreach -Ap --include '@cloudbeaver/core-sdk' run gql:gen:dev\" \"vite {@}\"",
"lint": "eslint ./src/ --ext .ts,.tsx",
diff --git a/webapp/packages/product-default/tsconfig.json b/webapp/packages/product-default/tsconfig.json
index cd4626e687..e8ae23b2c4 100644
--- a/webapp/packages/product-default/tsconfig.json
+++ b/webapp/packages/product-default/tsconfig.json
@@ -32,7 +32,7 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "dist/**/*",
+ "lib/**/*"
]
}
diff --git a/webapp/packages/tests-runner/package.json b/webapp/packages/tests-runner/package.json
index f79bfd83d6..9878c24e6e 100644
--- a/webapp/packages/tests-runner/package.json
+++ b/webapp/packages/tests-runner/package.json
@@ -5,25 +5,25 @@
"description": "",
"license": "Apache-2.0",
"exports": {
- ".": "./dist/index.js"
+ ".": "./lib/index.js"
},
"scripts": {
"build": "tsc -b",
- "clean": "rimraf --glob dist",
+ "clean": "rimraf --glob lib",
"lint": "eslint ./src/ --ext .ts,.tsx",
"test": "core-cli-test",
"validate-dependencies": "core-cli-validate-dependencies"
},
"dependencies": {
"@cloudbeaver/core-di": "workspace:*",
- "@jest/globals": "^29",
"@testing-library/dom": "^10",
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^16",
"mobx": "^6",
"react": "^19",
"react-dom": "^19",
- "tslib": "^2"
+ "tslib": "^2",
+ "vitest": "^3"
},
"sideEffects": [
"src/**/*.css",
@@ -33,8 +33,6 @@
"devDependencies": {
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
- "@jest/globals": "^29",
- "@types/jest": "^29",
"@types/react": "^19",
"typescript": "^5"
}
diff --git a/webapp/packages/tests-runner/src/__custom_mocks__/mockKnownConsoleMessages.ts b/webapp/packages/tests-runner/src/__custom_mocks__/mockKnownConsoleMessages.ts
index 3c2416b44e..ca5fcbc1b5 100644
--- a/webapp/packages/tests-runner/src/__custom_mocks__/mockKnownConsoleMessages.ts
+++ b/webapp/packages/tests-runner/src/__custom_mocks__/mockKnownConsoleMessages.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterAll, beforeAll, beforeEach, expect, jest } from '@jest/globals';
+import { afterAll, beforeAll, beforeEach, expect, vitest, type MockInstance } from 'vitest';
let knownLogPatterns: any[][] = [];
let knownWarnPatterns: any[][] = [];
@@ -13,28 +13,28 @@ let knownErrorPatterns: any[][] = [];
let knownInfoPatterns: any[][] = [];
let knownDebugPatterns: any[][] = [];
-let logSpy: jest.Spied;
-let warnSpy: jest.Spied;
-let errorSpy: jest.Spied;
-let infoSpy: jest.Spied;
-let debugSpy: jest.Spied;
+let logSpy: MockInstance;
+let warnSpy: MockInstance;
+let errorSpy: MockInstance;
+let infoSpy: MockInstance;
+let debugSpy: MockInstance;
beforeAll(() => {
- logSpy = jest.spyOn(console, 'log').mockImplementation((...args) => {
+ logSpy = vitest.spyOn(console, 'log').mockImplementation((...args) => {
if (filterPatterns(knownLogPatterns, args)) {
return;
}
expect(logSpy).not.toHaveBeenCalledWith(...args);
});
- warnSpy = jest.spyOn(console, 'warn').mockImplementation((...args) => {
+ warnSpy = vitest.spyOn(console, 'warn').mockImplementation((...args) => {
if (filterPatterns(knownWarnPatterns, args)) {
return;
}
expect(warnSpy).not.toHaveBeenCalledWith(...args);
});
- errorSpy = jest.spyOn(console, 'error').mockImplementation((...args) => {
+ errorSpy = vitest.spyOn(console, 'error').mockImplementation((...args) => {
if (args[0] && String(args[0]).includes('Expected:')) {
- // skip exceptions from jest expect
+ // skip exceptions from vitest expect
return;
}
if (args[0] && String(args[0]).includes('Error: Uncaught')) {
@@ -46,13 +46,13 @@ beforeAll(() => {
}
expect(errorSpy).not.toHaveBeenCalledWith(...args);
});
- infoSpy = jest.spyOn(console, 'info').mockImplementation((...args) => {
+ infoSpy = vitest.spyOn(console, 'info').mockImplementation((...args) => {
if (filterPatterns(knownInfoPatterns, args)) {
return;
}
expect(infoSpy).not.toHaveBeenCalledWith(...args);
});
- debugSpy = jest.spyOn(console, 'debug').mockImplementation((...args) => {
+ debugSpy = vitest.spyOn(console, 'debug').mockImplementation((...args) => {
if (filterPatterns(knownDebugPatterns, args)) {
return;
}
diff --git a/webapp/packages/tests-runner/src/createApp.ts b/webapp/packages/tests-runner/src/createApp.ts
index c39b78e724..bbbb6093cc 100644
--- a/webapp/packages/tests-runner/src/createApp.ts
+++ b/webapp/packages/tests-runner/src/createApp.ts
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import { afterAll, beforeAll } from '@jest/globals';
+import { afterAll, beforeAll } from 'vitest';
import { configure } from 'mobx';
import { App, IServiceProvider, type PluginManifest } from '@cloudbeaver/core-di';
diff --git a/webapp/packages/tests-runner/src/renderInApp.tsx b/webapp/packages/tests-runner/src/renderInApp.tsx
index 2acf60b13c..d62556adcf 100644
--- a/webapp/packages/tests-runner/src/renderInApp.tsx
+++ b/webapp/packages/tests-runner/src/renderInApp.tsx
@@ -1,11 +1,11 @@
/*
* CloudBeaver - Cloud Database Manager
- * Copyright (C) 2020-2024 DBeaver Corp and others
+ * Copyright (C) 2020-2025 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
-import '@testing-library/jest-dom/jest-globals';
+import '@testing-library/jest-dom/vitest';
import { queries, type Queries, render, type RenderOptions, type RenderResult } from '@testing-library/react';
import { Suspense } from 'react';
@@ -13,12 +13,15 @@ import { type IServiceProvider, ServiceProviderContext } from '@cloudbeaver/core
import type { IApplication } from './createApp.js';
-function ApplicationWrapper(serviceInjector: IServiceProvider): React.FC {
- return ({ children }) => (
-
+function ApplicationWrapper(serviceInjector: IServiceProvider, withSuspense: boolean): React.FC {
+ return ({ children }) =>
+ withSuspense ? (
+
+ {children}
+
+ ) : (
{children}
-
- );
+ );
}
export function renderInApp<
Q extends Queries = typeof queries,
@@ -27,7 +30,8 @@ export function renderInApp<
>(
ui: React.ReactElement,
app: IApplication,
+ withSuspense = false,
options?: Omit, 'queries' | 'wrapper'>,
): RenderResult {
- return render(ui, { wrapper: ApplicationWrapper(app.serviceProvider), ...options });
+ return render(ui, { wrapper: ApplicationWrapper(app.serviceProvider, withSuspense), ...options });
}
diff --git a/webapp/packages/tests-runner/tsconfig.json b/webapp/packages/tests-runner/tsconfig.json
index dd9fb34ea9..9ec23da0a4 100644
--- a/webapp/packages/tests-runner/tsconfig.json
+++ b/webapp/packages/tests-runner/tsconfig.json
@@ -2,8 +2,8 @@
"extends": "@cloudbeaver/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
- "outDir": "dist",
- "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
+ "outDir": "lib",
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
"composite": true
},
"references": [
@@ -23,7 +23,6 @@
],
"exclude": [
"**/node_modules",
- "lib/**/*",
- "dist/**/*"
+ "lib/**/*"
]
}
diff --git a/webapp/yarn.lock b/webapp/yarn.lock
index 2f358faff6..2f52a5469a 100644
--- a/webapp/yarn.lock
+++ b/webapp/yarn.lock
@@ -113,7 +113,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0, @babel/code-frame@npm:^7.26.2":
+"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0, @babel/code-frame@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
@@ -138,7 +138,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.14.0, @babel/core@npm:^7.22.9, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.4":
+"@babel/core@npm:^7.14.0, @babel/core@npm:^7.22.9, @babel/core@npm:^7.24.4":
version: 7.26.0
resolution: "@babel/core@npm:7.26.0"
dependencies:
@@ -184,7 +184,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0, @babel/generator@npm:^7.7.2":
+"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/generator@npm:7.26.2"
dependencies:
@@ -342,7 +342,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.8.0":
+"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.25.9
resolution: "@babel/helper-plugin-utils@npm:7.25.9"
checksum: 10c0/483066a1ba36ff16c0116cd24f93de05de746a603a777cd695ac7a1b034928a65a4ecb35f255761ca56626435d7abdb73219eba196f9aa83b6c3c3169325599d
@@ -447,7 +447,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.16.8, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2":
+"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.16.8, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/parser@npm:7.26.2"
dependencies:
@@ -564,29 +564,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-async-generators@npm:^7.8.4":
- version: 7.8.4
- resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.8.0"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-bigint@npm:^7.8.3":
- version: 7.8.3
- resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.8.0"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-class-properties@npm:^7.0.0, @babel/plugin-syntax-class-properties@npm:^7.12.13":
+"@babel/plugin-syntax-class-properties@npm:^7.0.0":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
@@ -597,17 +575,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
- version: 7.14.5
- resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.14.5"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371
- languageName: node
- linkType: hard
-
"@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.25.9":
version: 7.26.0
resolution: "@babel/plugin-syntax-flow@npm:7.26.0"
@@ -630,7 +597,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-import-attributes@npm:^7.24.7, @babel/plugin-syntax-import-attributes@npm:^7.26.0":
+"@babel/plugin-syntax-import-attributes@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0"
dependencies:
@@ -641,29 +608,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-import-meta@npm:^7.10.4":
- version: 7.10.4
- resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.10.4"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-json-strings@npm:^7.8.3":
- version: 7.8.3
- resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.8.0"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.25.9, @babel/plugin-syntax-jsx@npm:^7.7.2":
+"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-syntax-jsx@npm:7.25.9"
dependencies:
@@ -674,39 +619,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4":
- version: 7.10.4
- resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.10.4"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
- version: 7.8.3
- resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.8.0"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-numeric-separator@npm:^7.10.4":
- version: 7.10.4
- resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.10.4"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9
- languageName: node
- linkType: hard
-
"@babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
@@ -718,61 +630,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
- version: 7.8.3
- resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.8.0"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
- version: 7.8.3
- resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.8.0"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
- version: 7.14.5
- resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.14.5"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/69822772561706c87f0a65bc92d0772cea74d6bc0911537904a676d5ff496a6d3ac4e05a166d8125fce4a16605bace141afc3611074e170a994e66e5397787f3
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-top-level-await@npm:^7.14.5":
- version: 7.14.5
- resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.14.5"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-typescript@npm:^7.7.2":
- version: 7.25.9
- resolution: "@babel/plugin-syntax-typescript@npm:7.25.9"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 10c0/5192ebe11bd46aea68b7a60fd9555465c59af7e279e71126788e59121b86e00b505816685ab4782abe159232b0f73854e804b54449820b0d950b397ee158caa2
- languageName: node
- linkType: hard
-
"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6"
@@ -1544,7 +1401,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.25.9, @babel/template@npm:^7.3.3":
+"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/template@npm:7.25.9"
dependencies:
@@ -1585,7 +1442,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/types@npm:^7.0.0, @babel/types@npm:^7.16.8, @babel/types@npm:^7.18.13, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
+"@babel/types@npm:^7.0.0, @babel/types@npm:^7.16.8, @babel/types@npm:^7.18.13, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0, @babel/types@npm:^7.4.4":
version: 7.26.0
resolution: "@babel/types@npm:7.26.0"
dependencies:
@@ -1605,13 +1462,6 @@ __metadata:
languageName: node
linkType: hard
-"@bcoe/v8-coverage@npm:^0.2.3":
- version: 0.2.3
- resolution: "@bcoe/v8-coverage@npm:0.2.3"
- checksum: 10c0/6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52
- languageName: node
- linkType: hard
-
"@bufbuild/protobuf@npm:^2.0.0":
version: 2.2.3
resolution: "@bufbuild/protobuf@npm:2.2.3"
@@ -1724,11 +1574,11 @@ __metadata:
"@cloudbeaver/core-storage": "workspace:*"
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
msw: "npm:^2"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -1751,10 +1601,8 @@ __metadata:
"@cloudbeaver/tests-runner": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
"@dbeaver/ui-kit": "workspace:^"
- "@jest/globals": "npm:^29"
- "@testing-library/dom": "npm:^10"
+ "@testing-library/jest-dom": "npm:^6"
"@testing-library/react": "npm:^16"
- "@types/jest": "npm:^29"
"@types/react": "npm:^19"
go-split: "npm:^3"
minisearch: "npm:^7"
@@ -1769,6 +1617,7 @@ __metadata:
tslib: "npm:^2"
typescript: "npm:^5"
typescript-plugin-css-modules: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -1847,9 +1696,9 @@ __metadata:
"@cloudbeaver/core-settings": "workspace:*"
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -1883,29 +1732,28 @@ __metadata:
dependencies:
"@cloudbeaver/tsconfig": "workspace:*"
"@swc/core": "npm:^1"
- "@swc/jest": "npm:^0"
"@testing-library/jest-dom": "npm:^6"
+ "@testing-library/react": "npm:^14"
"@types/js-yaml": "npm:^4"
"@types/node": "npm:^20"
enquirer: "npm:^2"
execa: "npm:^9"
fake-indexeddb: "npm:^6"
glob: "npm:^11"
+ happy-dom: "npm:^17"
hygen: "npm:^6"
- jest: "npm:^29"
- jest-environment-jsdom: "npm:^29"
js-yaml: "npm:^4"
tslib: "npm:^2"
typescript: "npm:^5"
- upath: "npm:^2"
+ vitest: "npm:^3"
bin:
core-cli-add-plugin: ./bin/add-plugin.js
core-cli-analyzer: ./bin/analyzer.js
- core-cli-check-license: ./dist/cli/license-check.js
+ core-cli-check-license: ./lib/cli/license-check.js
core-cli-dependency-graph: ./bin/dependency-graph.js
core-cli-set-version: ./bin/set-version.mjs
core-cli-test: ./bin/test.js
- core-cli-validate-dependencies: ./dist/cli/validate-dependencies.js
+ core-cli-validate-dependencies: ./lib/cli/validate-dependencies.js
languageName: unknown
linkType: soft
@@ -1917,11 +1765,10 @@ __metadata:
"@cloudbeaver/core-di": "workspace:*"
"@cloudbeaver/core-executor": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -1978,8 +1825,6 @@ __metadata:
"@cloudbeaver/core-cli": "workspace:*"
"@cloudbeaver/core-executor": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
- "@types/jest": "npm:^29"
"@types/react": "npm:^19"
inversify: "npm:^6"
mobx: "npm:^6"
@@ -1987,6 +1832,7 @@ __metadata:
reflect-metadata: "npm:^0"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2016,10 +1862,10 @@ __metadata:
"@cloudbeaver/core-settings": "workspace:*"
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2066,11 +1912,10 @@ __metadata:
"@cloudbeaver/core-di": "workspace:*"
"@cloudbeaver/core-executor": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2092,12 +1937,12 @@ __metadata:
"@cloudbeaver/core-settings": "workspace:*"
"@cloudbeaver/core-ui": "workspace:*"
"@cloudbeaver/core-utils": "workspace:*"
+ "@cloudbeaver/tests-runner": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2189,11 +2034,10 @@ __metadata:
"@cloudbeaver/core-executor": "workspace:*"
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2214,13 +2058,12 @@ __metadata:
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/tests-runner": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
msw: "npm:^2"
rxjs: "npm:^7"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2306,10 +2149,10 @@ __metadata:
"@cloudbeaver/core-settings": "workspace:*"
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2343,11 +2186,10 @@ __metadata:
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/tests-runner": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2402,11 +2244,11 @@ __metadata:
"@material/switch": "npm:^4"
"@material/theme": "npm:^4"
"@material/typography": "npm:^4"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
typescript-plugin-css-modules: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -2446,9 +2288,7 @@ __metadata:
dependencies:
"@cloudbeaver/core-cli": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
"@timohausmann/quadtree-ts": "npm:^2"
- "@types/jest": "npm:^29"
"@types/md5": "npm:^2"
"@types/underscore": "npm:^1"
"@types/uuid": "npm:^10"
@@ -2461,6 +2301,7 @@ __metadata:
typescript: "npm:^5"
underscore: "npm:^1"
uuid: "npm:^11"
+ vitest: "npm:^3"
whatwg-mimetype: "npm:^4"
zod: "npm:^3"
zod-i18n-map: "npm:^2"
@@ -3040,7 +2881,6 @@ __metadata:
"@cloudbeaver/tsconfig": "workspace:*"
"@dbeaver/ui-kit": "workspace:^"
"@popperjs/core": "npm:^2"
- "@types/jest": "npm:^29"
"@types/react": "npm:^19"
"@types/react-dom": "npm:^19"
mobx: "npm:^6"
@@ -3051,6 +2891,7 @@ __metadata:
tslib: "npm:^2"
typescript: "npm:^5"
typescript-plugin-css-modules: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -3135,7 +2976,6 @@ __metadata:
"@cloudbeaver/plugin-navigation-tabs": "workspace:*"
"@cloudbeaver/plugin-object-viewer": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
"@types/react": "npm:^19"
mobx: "npm:^6"
mobx-react-lite: "npm:^4"
@@ -3145,6 +2985,7 @@ __metadata:
tslib: "npm:^2"
typescript: "npm:^5"
typescript-plugin-css-modules: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -3404,7 +3245,6 @@ __metadata:
"@cloudbeaver/core-view": "workspace:*"
"@cloudbeaver/plugin-tools-panel": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
"@types/react": "npm:^19"
mobx: "npm:^6"
mobx-react-lite: "npm:^4"
@@ -3413,6 +3253,7 @@ __metadata:
tslib: "npm:^2"
typescript: "npm:^5"
typescript-plugin-css-modules: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -3530,7 +3371,6 @@ __metadata:
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/core-view": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
"@types/react": "npm:^19"
mobx: "npm:^6"
mobx-react-lite: "npm:^4"
@@ -3539,6 +3379,7 @@ __metadata:
tslib: "npm:^2"
typescript: "npm:^5"
typescript-plugin-css-modules: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -3742,10 +3583,10 @@ __metadata:
"@cloudbeaver/core-settings": "workspace:*"
"@cloudbeaver/core-utils": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
mobx: "npm:^6"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -4036,7 +3877,6 @@ __metadata:
"@cloudbeaver/plugin-data-viewer": "workspace:*"
"@cloudbeaver/plugin-navigation-tabs": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@types/jest": "npm:^29"
"@types/react": "npm:^19"
mobx: "npm:^6"
mobx-react-lite: "npm:^4"
@@ -4045,6 +3885,7 @@ __metadata:
tslib: "npm:^2"
typescript: "npm:^5"
typescript-plugin-css-modules: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -4461,17 +4302,16 @@ __metadata:
"@cloudbeaver/core-cli": "workspace:*"
"@cloudbeaver/core-di": "workspace:*"
"@cloudbeaver/tsconfig": "workspace:*"
- "@jest/globals": "npm:^29"
"@testing-library/dom": "npm:^10"
"@testing-library/jest-dom": "npm:^6"
"@testing-library/react": "npm:^16"
- "@types/jest": "npm:^29"
"@types/react": "npm:^19"
mobx: "npm:^6"
react: "npm:^19"
react-dom: "npm:^19"
tslib: "npm:^2"
typescript: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -4727,6 +4567,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/aix-ppc64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/aix-ppc64@npm:0.25.1"
+ conditions: os=aix & cpu=ppc64
+ languageName: node
+ linkType: hard
+
"@esbuild/android-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-arm64@npm:0.24.2"
@@ -4734,6 +4581,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/android-arm64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/android-arm64@npm:0.25.1"
+ conditions: os=android & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/android-arm@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-arm@npm:0.24.2"
@@ -4741,6 +4595,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/android-arm@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/android-arm@npm:0.25.1"
+ conditions: os=android & cpu=arm
+ languageName: node
+ linkType: hard
+
"@esbuild/android-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-x64@npm:0.24.2"
@@ -4748,6 +4609,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/android-x64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/android-x64@npm:0.25.1"
+ conditions: os=android & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/darwin-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/darwin-arm64@npm:0.24.2"
@@ -4755,6 +4623,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/darwin-arm64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/darwin-arm64@npm:0.25.1"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/darwin-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/darwin-x64@npm:0.24.2"
@@ -4762,6 +4637,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/darwin-x64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/darwin-x64@npm:0.25.1"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/freebsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/freebsd-arm64@npm:0.24.2"
@@ -4769,6 +4651,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/freebsd-arm64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/freebsd-arm64@npm:0.25.1"
+ conditions: os=freebsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/freebsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/freebsd-x64@npm:0.24.2"
@@ -4776,6 +4665,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/freebsd-x64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/freebsd-x64@npm:0.25.1"
+ conditions: os=freebsd & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-arm64@npm:0.24.2"
@@ -4783,6 +4679,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-arm64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-arm64@npm:0.25.1"
+ conditions: os=linux & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-arm@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-arm@npm:0.24.2"
@@ -4790,6 +4693,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-arm@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-arm@npm:0.25.1"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-ia32@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-ia32@npm:0.24.2"
@@ -4797,6 +4707,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-ia32@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-ia32@npm:0.25.1"
+ conditions: os=linux & cpu=ia32
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-loong64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-loong64@npm:0.24.2"
@@ -4804,6 +4721,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-loong64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-loong64@npm:0.25.1"
+ conditions: os=linux & cpu=loong64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-mips64el@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-mips64el@npm:0.24.2"
@@ -4811,6 +4735,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-mips64el@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-mips64el@npm:0.25.1"
+ conditions: os=linux & cpu=mips64el
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-ppc64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-ppc64@npm:0.24.2"
@@ -4818,6 +4749,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-ppc64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-ppc64@npm:0.25.1"
+ conditions: os=linux & cpu=ppc64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-riscv64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-riscv64@npm:0.24.2"
@@ -4825,6 +4763,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-riscv64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-riscv64@npm:0.25.1"
+ conditions: os=linux & cpu=riscv64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-s390x@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-s390x@npm:0.24.2"
@@ -4832,6 +4777,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-s390x@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-s390x@npm:0.25.1"
+ conditions: os=linux & cpu=s390x
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-x64@npm:0.24.2"
@@ -4839,6 +4791,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-x64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/linux-x64@npm:0.25.1"
+ conditions: os=linux & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/netbsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/netbsd-arm64@npm:0.24.2"
@@ -4846,6 +4805,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/netbsd-arm64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/netbsd-arm64@npm:0.25.1"
+ conditions: os=netbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/netbsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/netbsd-x64@npm:0.24.2"
@@ -4853,6 +4819,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/netbsd-x64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/netbsd-x64@npm:0.25.1"
+ conditions: os=netbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/openbsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/openbsd-arm64@npm:0.24.2"
@@ -4860,6 +4833,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/openbsd-arm64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/openbsd-arm64@npm:0.25.1"
+ conditions: os=openbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/openbsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/openbsd-x64@npm:0.24.2"
@@ -4867,6 +4847,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/openbsd-x64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/openbsd-x64@npm:0.25.1"
+ conditions: os=openbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/sunos-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/sunos-x64@npm:0.24.2"
@@ -4874,6 +4861,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/sunos-x64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/sunos-x64@npm:0.25.1"
+ conditions: os=sunos & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/win32-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-arm64@npm:0.24.2"
@@ -4881,6 +4875,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/win32-arm64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/win32-arm64@npm:0.25.1"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/win32-ia32@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-ia32@npm:0.24.2"
@@ -4888,6 +4889,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/win32-ia32@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/win32-ia32@npm:0.25.1"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
"@esbuild/win32-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-x64@npm:0.24.2"
@@ -4895,6 +4903,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/win32-x64@npm:0.25.1":
+ version: 0.25.1
+ resolution: "@esbuild/win32-x64@npm:0.25.1"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
@@ -5899,321 +5914,62 @@ __metadata:
languageName: node
linkType: hard
-"@istanbuljs/load-nyc-config@npm:^1.0.0":
- version: 1.1.0
- resolution: "@istanbuljs/load-nyc-config@npm:1.1.0"
+"@jridgewell/gen-mapping@npm:^0.3.5":
+ version: 0.3.5
+ resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
- camelcase: "npm:^5.3.1"
- find-up: "npm:^4.1.0"
- get-package-type: "npm:^0.1.0"
- js-yaml: "npm:^3.13.1"
- resolve-from: "npm:^5.0.0"
- checksum: 10c0/dd2a8b094887da5a1a2339543a4933d06db2e63cbbc2e288eb6431bd832065df0c099d091b6a67436e71b7d6bf85f01ce7c15f9253b4cbebcc3b9a496165ba42
- languageName: node
- linkType: hard
-
-"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3":
- version: 0.1.3
- resolution: "@istanbuljs/schema@npm:0.1.3"
- checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a
+ "@jridgewell/set-array": "npm:^1.2.1"
+ "@jridgewell/sourcemap-codec": "npm:^1.4.10"
+ "@jridgewell/trace-mapping": "npm:^0.3.24"
+ checksum: 10c0/1be4fd4a6b0f41337c4f5fdf4afc3bd19e39c3691924817108b82ffcb9c9e609c273f936932b9fba4b3a298ce2eb06d9bff4eb1cc3bd81c4f4ee1b4917e25feb
languageName: node
linkType: hard
-"@jest/console@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/console@npm:29.7.0"
- dependencies:
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- chalk: "npm:^4.0.0"
- jest-message-util: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- slash: "npm:^3.0.0"
- checksum: 10c0/7be408781d0a6f657e969cbec13b540c329671819c2f57acfad0dae9dbfe2c9be859f38fe99b35dba9ff1536937dc6ddc69fdcd2794812fa3c647a1619797f6c
+"@jridgewell/resolve-uri@npm:^3.1.0":
+ version: 3.1.2
+ resolution: "@jridgewell/resolve-uri@npm:3.1.2"
+ checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
-"@jest/core@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/core@npm:29.7.0"
- dependencies:
- "@jest/console": "npm:^29.7.0"
- "@jest/reporters": "npm:^29.7.0"
- "@jest/test-result": "npm:^29.7.0"
- "@jest/transform": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- ansi-escapes: "npm:^4.2.1"
- chalk: "npm:^4.0.0"
- ci-info: "npm:^3.2.0"
- exit: "npm:^0.1.2"
- graceful-fs: "npm:^4.2.9"
- jest-changed-files: "npm:^29.7.0"
- jest-config: "npm:^29.7.0"
- jest-haste-map: "npm:^29.7.0"
- jest-message-util: "npm:^29.7.0"
- jest-regex-util: "npm:^29.6.3"
- jest-resolve: "npm:^29.7.0"
- jest-resolve-dependencies: "npm:^29.7.0"
- jest-runner: "npm:^29.7.0"
- jest-runtime: "npm:^29.7.0"
- jest-snapshot: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- jest-validate: "npm:^29.7.0"
- jest-watcher: "npm:^29.7.0"
- micromatch: "npm:^4.0.4"
- pretty-format: "npm:^29.7.0"
- slash: "npm:^3.0.0"
- strip-ansi: "npm:^6.0.0"
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- checksum: 10c0/934f7bf73190f029ac0f96662c85cd276ec460d407baf6b0dbaec2872e157db4d55a7ee0b1c43b18874602f662b37cb973dda469a4e6d88b4e4845b521adeeb2
+"@jridgewell/set-array@npm:^1.2.1":
+ version: 1.2.1
+ resolution: "@jridgewell/set-array@npm:1.2.1"
+ checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4
languageName: node
linkType: hard
-"@jest/create-cache-key-function@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/create-cache-key-function@npm:29.7.0"
+"@jridgewell/source-map@npm:^0.3.3":
+ version: 0.3.6
+ resolution: "@jridgewell/source-map@npm:0.3.6"
dependencies:
- "@jest/types": "npm:^29.6.3"
- checksum: 10c0/5c47ef62205264adf77b1ff26b969ce9fe84920b8275c3c5e83f4236859d6ae5e4e7027af99eef04a8e334c4e424d44af3e167972083406070aca733ac2a2795
+ "@jridgewell/gen-mapping": "npm:^0.3.5"
+ "@jridgewell/trace-mapping": "npm:^0.3.25"
+ checksum: 10c0/6a4ecc713ed246ff8e5bdcc1ef7c49aaa93f7463d948ba5054dda18b02dcc6a055e2828c577bcceee058f302ce1fc95595713d44f5c45e43d459f88d267f2f04
languageName: node
linkType: hard
-"@jest/environment@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/environment@npm:29.7.0"
- dependencies:
- "@jest/fake-timers": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- jest-mock: "npm:^29.7.0"
- checksum: 10c0/c7b1b40c618f8baf4d00609022d2afa086d9c6acc706f303a70bb4b67275868f620ad2e1a9efc5edd418906157337cce50589a627a6400bbdf117d351b91ef86
+"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0":
+ version: 1.5.0
+ resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
+ checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
-"@jest/expect-utils@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/expect-utils@npm:29.7.0"
+"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
+ version: 0.3.25
+ resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
- jest-get-type: "npm:^29.6.3"
- checksum: 10c0/60b79d23a5358dc50d9510d726443316253ecda3a7fb8072e1526b3e0d3b14f066ee112db95699b7a43ad3f0b61b750c72e28a5a1cac361d7a2bb34747fa938a
+ "@jridgewell/resolve-uri": "npm:^3.1.0"
+ "@jridgewell/sourcemap-codec": "npm:^1.4.14"
+ checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4
languageName: node
linkType: hard
-"@jest/expect@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/expect@npm:29.7.0"
- dependencies:
- expect: "npm:^29.7.0"
- jest-snapshot: "npm:^29.7.0"
- checksum: 10c0/b41f193fb697d3ced134349250aed6ccea075e48c4f803159db102b826a4e473397c68c31118259868fd69a5cba70e97e1c26d2c2ff716ca39dc73a2ccec037e
- languageName: node
- linkType: hard
-
-"@jest/fake-timers@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/fake-timers@npm:29.7.0"
- dependencies:
- "@jest/types": "npm:^29.6.3"
- "@sinonjs/fake-timers": "npm:^10.0.2"
- "@types/node": "npm:*"
- jest-message-util: "npm:^29.7.0"
- jest-mock: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- checksum: 10c0/cf0a8bcda801b28dc2e2b2ba36302200ee8104a45ad7a21e6c234148932f826cb3bc57c8df3b7b815aeea0861d7b6ca6f0d4778f93b9219398ef28749e03595c
- languageName: node
- linkType: hard
-
-"@jest/globals@npm:^29, @jest/globals@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/globals@npm:29.7.0"
- dependencies:
- "@jest/environment": "npm:^29.7.0"
- "@jest/expect": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- jest-mock: "npm:^29.7.0"
- checksum: 10c0/a385c99396878fe6e4460c43bd7bb0a5cc52befb462cc6e7f2a3810f9e7bcce7cdeb51908fd530391ee452dc856c98baa2c5f5fa8a5b30b071d31ef7f6955cea
- languageName: node
- linkType: hard
-
-"@jest/reporters@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/reporters@npm:29.7.0"
- dependencies:
- "@bcoe/v8-coverage": "npm:^0.2.3"
- "@jest/console": "npm:^29.7.0"
- "@jest/test-result": "npm:^29.7.0"
- "@jest/transform": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@jridgewell/trace-mapping": "npm:^0.3.18"
- "@types/node": "npm:*"
- chalk: "npm:^4.0.0"
- collect-v8-coverage: "npm:^1.0.0"
- exit: "npm:^0.1.2"
- glob: "npm:^7.1.3"
- graceful-fs: "npm:^4.2.9"
- istanbul-lib-coverage: "npm:^3.0.0"
- istanbul-lib-instrument: "npm:^6.0.0"
- istanbul-lib-report: "npm:^3.0.0"
- istanbul-lib-source-maps: "npm:^4.0.0"
- istanbul-reports: "npm:^3.1.3"
- jest-message-util: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- jest-worker: "npm:^29.7.0"
- slash: "npm:^3.0.0"
- string-length: "npm:^4.0.1"
- strip-ansi: "npm:^6.0.0"
- v8-to-istanbul: "npm:^9.0.1"
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- checksum: 10c0/a754402a799541c6e5aff2c8160562525e2a47e7d568f01ebfc4da66522de39cbb809bbb0a841c7052e4270d79214e70aec3c169e4eae42a03bc1a8a20cb9fa2
- languageName: node
- linkType: hard
-
-"@jest/schemas@npm:^29.6.3":
- version: 29.6.3
- resolution: "@jest/schemas@npm:29.6.3"
- dependencies:
- "@sinclair/typebox": "npm:^0.27.8"
- checksum: 10c0/b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be
- languageName: node
- linkType: hard
-
-"@jest/source-map@npm:^29.6.3":
- version: 29.6.3
- resolution: "@jest/source-map@npm:29.6.3"
- dependencies:
- "@jridgewell/trace-mapping": "npm:^0.3.18"
- callsites: "npm:^3.0.0"
- graceful-fs: "npm:^4.2.9"
- checksum: 10c0/a2f177081830a2e8ad3f2e29e20b63bd40bade294880b595acf2fc09ec74b6a9dd98f126a2baa2bf4941acd89b13a4ade5351b3885c224107083a0059b60a219
- languageName: node
- linkType: hard
-
-"@jest/test-result@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/test-result@npm:29.7.0"
- dependencies:
- "@jest/console": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/istanbul-lib-coverage": "npm:^2.0.0"
- collect-v8-coverage: "npm:^1.0.0"
- checksum: 10c0/7de54090e54a674ca173470b55dc1afdee994f2d70d185c80236003efd3fa2b753fff51ffcdda8e2890244c411fd2267529d42c4a50a8303755041ee493e6a04
- languageName: node
- linkType: hard
-
-"@jest/test-sequencer@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/test-sequencer@npm:29.7.0"
- dependencies:
- "@jest/test-result": "npm:^29.7.0"
- graceful-fs: "npm:^4.2.9"
- jest-haste-map: "npm:^29.7.0"
- slash: "npm:^3.0.0"
- checksum: 10c0/593a8c4272797bb5628984486080cbf57aed09c7cfdc0a634e8c06c38c6bef329c46c0016e84555ee55d1cd1f381518cf1890990ff845524c1123720c8c1481b
- languageName: node
- linkType: hard
-
-"@jest/transform@npm:^29.7.0":
- version: 29.7.0
- resolution: "@jest/transform@npm:29.7.0"
- dependencies:
- "@babel/core": "npm:^7.11.6"
- "@jest/types": "npm:^29.6.3"
- "@jridgewell/trace-mapping": "npm:^0.3.18"
- babel-plugin-istanbul: "npm:^6.1.1"
- chalk: "npm:^4.0.0"
- convert-source-map: "npm:^2.0.0"
- fast-json-stable-stringify: "npm:^2.1.0"
- graceful-fs: "npm:^4.2.9"
- jest-haste-map: "npm:^29.7.0"
- jest-regex-util: "npm:^29.6.3"
- jest-util: "npm:^29.7.0"
- micromatch: "npm:^4.0.4"
- pirates: "npm:^4.0.4"
- slash: "npm:^3.0.0"
- write-file-atomic: "npm:^4.0.2"
- checksum: 10c0/7f4a7f73dcf45dfdf280c7aa283cbac7b6e5a904813c3a93ead7e55873761fc20d5c4f0191d2019004fac6f55f061c82eb3249c2901164ad80e362e7a7ede5a6
- languageName: node
- linkType: hard
-
-"@jest/types@npm:^29.6.3":
- version: 29.6.3
- resolution: "@jest/types@npm:29.6.3"
- dependencies:
- "@jest/schemas": "npm:^29.6.3"
- "@types/istanbul-lib-coverage": "npm:^2.0.0"
- "@types/istanbul-reports": "npm:^3.0.0"
- "@types/node": "npm:*"
- "@types/yargs": "npm:^17.0.8"
- chalk: "npm:^4.0.0"
- checksum: 10c0/ea4e493dd3fb47933b8ccab201ae573dcc451f951dc44ed2a86123cd8541b82aa9d2b1031caf9b1080d6673c517e2dcc25a44b2dc4f3fbc37bfc965d444888c0
- languageName: node
- linkType: hard
-
-"@jridgewell/gen-mapping@npm:^0.3.5":
- version: 0.3.5
- resolution: "@jridgewell/gen-mapping@npm:0.3.5"
- dependencies:
- "@jridgewell/set-array": "npm:^1.2.1"
- "@jridgewell/sourcemap-codec": "npm:^1.4.10"
- "@jridgewell/trace-mapping": "npm:^0.3.24"
- checksum: 10c0/1be4fd4a6b0f41337c4f5fdf4afc3bd19e39c3691924817108b82ffcb9c9e609c273f936932b9fba4b3a298ce2eb06d9bff4eb1cc3bd81c4f4ee1b4917e25feb
- languageName: node
- linkType: hard
-
-"@jridgewell/resolve-uri@npm:^3.1.0":
- version: 3.1.2
- resolution: "@jridgewell/resolve-uri@npm:3.1.2"
- checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
- languageName: node
- linkType: hard
-
-"@jridgewell/set-array@npm:^1.2.1":
- version: 1.2.1
- resolution: "@jridgewell/set-array@npm:1.2.1"
- checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4
- languageName: node
- linkType: hard
-
-"@jridgewell/source-map@npm:^0.3.3":
- version: 0.3.6
- resolution: "@jridgewell/source-map@npm:0.3.6"
- dependencies:
- "@jridgewell/gen-mapping": "npm:^0.3.5"
- "@jridgewell/trace-mapping": "npm:^0.3.25"
- checksum: 10c0/6a4ecc713ed246ff8e5bdcc1ef7c49aaa93f7463d948ba5054dda18b02dcc6a055e2828c577bcceee058f302ce1fc95595713d44f5c45e43d459f88d267f2f04
- languageName: node
- linkType: hard
-
-"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
- version: 1.5.0
- resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
- checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
- languageName: node
- linkType: hard
-
-"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
- version: 0.3.25
- resolution: "@jridgewell/trace-mapping@npm:0.3.25"
- dependencies:
- "@jridgewell/resolve-uri": "npm:^3.1.0"
- "@jridgewell/sourcemap-codec": "npm:^1.4.14"
- checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4
- languageName: node
- linkType: hard
-
-"@kamilkisiela/fast-url-parser@npm:^1.1.4":
- version: 1.1.4
- resolution: "@kamilkisiela/fast-url-parser@npm:1.1.4"
- checksum: 10c0/2c85202cb4924720ac812c8bc06967fd5df4db759a68aa3acc2962b8cf9e2b3bc131de863f00473c0b0602df13891b35140f667a87eea04c9b897b6c1ae89c4a
+"@kamilkisiela/fast-url-parser@npm:^1.1.4":
+ version: 1.1.4
+ resolution: "@kamilkisiela/fast-url-parser@npm:1.1.4"
+ checksum: 10c0/2c85202cb4924720ac812c8bc06967fd5df4db759a68aa3acc2962b8cf9e2b3bc131de863f00473c0b0602df13891b35140f667a87eea04c9b897b6c1ae89c4a
languageName: node
linkType: hard
@@ -7254,13 +7010,6 @@ __metadata:
languageName: node
linkType: hard
-"@sinclair/typebox@npm:^0.27.8":
- version: 0.27.8
- resolution: "@sinclair/typebox@npm:0.27.8"
- checksum: 10c0/ef6351ae073c45c2ac89494dbb3e1f87cc60a93ce4cde797b782812b6f97da0d620ae81973f104b43c9b7eaa789ad20ba4f6a1359f1cc62f63729a55a7d22d4e
- languageName: node
- linkType: hard
-
"@sindresorhus/merge-streams@npm:^2.1.0":
version: 2.3.0
resolution: "@sindresorhus/merge-streams@npm:2.3.0"
@@ -7275,24 +7024,6 @@ __metadata:
languageName: node
linkType: hard
-"@sinonjs/commons@npm:^3.0.0":
- version: 3.0.1
- resolution: "@sinonjs/commons@npm:3.0.1"
- dependencies:
- type-detect: "npm:4.0.8"
- checksum: 10c0/1227a7b5bd6c6f9584274db996d7f8cee2c8c350534b9d0141fc662eaf1f292ea0ae3ed19e5e5271c8fd390d27e492ca2803acd31a1978be2cdc6be0da711403
- languageName: node
- linkType: hard
-
-"@sinonjs/fake-timers@npm:^10.0.2":
- version: 10.3.0
- resolution: "@sinonjs/fake-timers@npm:10.3.0"
- dependencies:
- "@sinonjs/commons": "npm:^3.0.0"
- checksum: 10c0/2e2fb6cc57f227912814085b7b01fede050cd4746ea8d49a1e44d5a0e56a804663b0340ae2f11af7559ea9bf4d087a11f2f646197a660ea3cb04e19efc04aa63
- languageName: node
- linkType: hard
-
"@stylistic/eslint-plugin@npm:^3":
version: 3.1.0
resolution: "@stylistic/eslint-plugin@npm:3.1.0"
@@ -7559,19 +7290,6 @@ __metadata:
languageName: node
linkType: hard
-"@swc/jest@npm:^0":
- version: 0.2.37
- resolution: "@swc/jest@npm:0.2.37"
- dependencies:
- "@jest/create-cache-key-function": "npm:^29.7.0"
- "@swc/counter": "npm:^0.1.3"
- jsonc-parser: "npm:^3.2.0"
- peerDependencies:
- "@swc/core": "*"
- checksum: 10c0/abe10d87610bf7c172aa7ab14c64599a22e48c1f43a09d6e22733f85f25fb98e57cb4bb58b9554e60a3ac8629be559bd967d7a8601a3ceaacad618aecccebec2
- languageName: node
- linkType: hard
-
"@swc/types@npm:^0.1.17":
version: 0.1.17
resolution: "@swc/types@npm:0.1.17"
@@ -7741,6 +7459,22 @@ __metadata:
languageName: node
linkType: hard
+"@testing-library/dom@npm:^9.0.0":
+ version: 9.3.4
+ resolution: "@testing-library/dom@npm:9.3.4"
+ dependencies:
+ "@babel/code-frame": "npm:^7.10.4"
+ "@babel/runtime": "npm:^7.12.5"
+ "@types/aria-query": "npm:^5.0.1"
+ aria-query: "npm:5.1.3"
+ chalk: "npm:^4.1.0"
+ dom-accessibility-api: "npm:^0.5.9"
+ lz-string: "npm:^1.5.0"
+ pretty-format: "npm:^27.0.2"
+ checksum: 10c0/147da340e8199d7f98f3a4ad8aa22ed55b914b83957efa5eb22bfea021a979ebe5a5182afa9c1e5b7a5f99a7f6744a5a4d9325ae46ec3b33b5a15aed8750d794
+ languageName: node
+ linkType: hard
+
"@testing-library/jest-dom@npm:^6":
version: 6.6.3
resolution: "@testing-library/jest-dom@npm:6.6.3"
@@ -7756,6 +7490,20 @@ __metadata:
languageName: node
linkType: hard
+"@testing-library/react@npm:^14":
+ version: 14.3.1
+ resolution: "@testing-library/react@npm:14.3.1"
+ dependencies:
+ "@babel/runtime": "npm:^7.12.5"
+ "@testing-library/dom": "npm:^9.0.0"
+ "@types/react-dom": "npm:^18.0.0"
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ checksum: 10c0/1ccf4eb1510500cc20a805cb0244c9098dca28a8745173a8f71ea1274d63774f0b7898a35c878b43c797b89c13621548909ff37843b835c1a27ee1efbbdd098c
+ languageName: node
+ linkType: hard
+
"@testing-library/react@npm:^16":
version: 16.0.1
resolution: "@testing-library/react@npm:16.0.1"
@@ -7792,13 +7540,6 @@ __metadata:
languageName: node
linkType: hard
-"@tootallnate/once@npm:2":
- version: 2.0.0
- resolution: "@tootallnate/once@npm:2.0.0"
- checksum: 10c0/073bfa548026b1ebaf1659eb8961e526be22fa77139b10d60e712f46d2f0f05f4e6c8bec62a087d41088ee9e29faa7f54838568e475ab2f776171003c3920858
- languageName: node
- linkType: hard
-
"@trivago/prettier-plugin-sort-imports@npm:^5":
version: 5.2.2
resolution: "@trivago/prettier-plugin-sort-imports@npm:5.2.2"
@@ -7841,7 +7582,7 @@ __metadata:
languageName: node
linkType: hard
-"@types/babel__core@npm:^7.1.14, @types/babel__core@npm:^7.20.5":
+"@types/babel__core@npm:^7.20.5":
version: 7.20.5
resolution: "@types/babel__core@npm:7.20.5"
dependencies:
@@ -7873,7 +7614,7 @@ __metadata:
languageName: node
linkType: hard
-"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6":
+"@types/babel__traverse@npm:*":
version: 7.20.6
resolution: "@types/babel__traverse@npm:7.20.6"
dependencies:
@@ -8210,15 +7951,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/graceful-fs@npm:^4.1.3":
- version: 4.1.9
- resolution: "@types/graceful-fs@npm:4.1.9"
- dependencies:
- "@types/node": "npm:*"
- checksum: 10c0/235d2fc69741448e853333b7c3d1180a966dd2b8972c8cbcd6b2a0c6cd7f8d582ab2b8e58219dbc62cce8f1b40aa317ff78ea2201cdd8249da5025adebed6f0b
- languageName: node
- linkType: hard
-
"@types/hast@npm:^3.0.0":
version: 3.0.4
resolution: "@types/hast@npm:3.0.4"
@@ -8228,41 +7960,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0, @types/istanbul-lib-coverage@npm:^2.0.1":
- version: 2.0.6
- resolution: "@types/istanbul-lib-coverage@npm:2.0.6"
- checksum: 10c0/3948088654f3eeb45363f1db158354fb013b362dba2a5c2c18c559484d5eb9f6fd85b23d66c0a7c2fcfab7308d0a585b14dadaca6cc8bf89ebfdc7f8f5102fb7
- languageName: node
- linkType: hard
-
-"@types/istanbul-lib-report@npm:*":
- version: 3.0.3
- resolution: "@types/istanbul-lib-report@npm:3.0.3"
- dependencies:
- "@types/istanbul-lib-coverage": "npm:*"
- checksum: 10c0/247e477bbc1a77248f3c6de5dadaae85ff86ac2d76c5fc6ab1776f54512a745ff2a5f791d22b942e3990ddbd40f3ef5289317c4fca5741bedfaa4f01df89051c
- languageName: node
- linkType: hard
-
-"@types/istanbul-reports@npm:^3.0.0":
- version: 3.0.4
- resolution: "@types/istanbul-reports@npm:3.0.4"
- dependencies:
- "@types/istanbul-lib-report": "npm:*"
- checksum: 10c0/1647fd402aced5b6edac87274af14ebd6b3a85447ef9ad11853a70fd92a98d35f81a5d3ea9fcb5dbb5834e800c6e35b64475e33fcae6bfa9acc70d61497c54ee
- languageName: node
- linkType: hard
-
-"@types/jest@npm:^29":
- version: 29.5.14
- resolution: "@types/jest@npm:29.5.14"
- dependencies:
- expect: "npm:^29.0.0"
- pretty-format: "npm:^29.0.0"
- checksum: 10c0/18e0712d818890db8a8dab3d91e9ea9f7f19e3f83c2e50b312f557017dc81466207a71f3ed79cf4428e813ba939954fa26ffa0a9a7f153181ba174581b1c2aed
- languageName: node
- linkType: hard
-
"@types/js-yaml@npm:^4, @types/js-yaml@npm:^4.0.0":
version: 4.0.9
resolution: "@types/js-yaml@npm:4.0.9"
@@ -8270,17 +7967,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/jsdom@npm:^20.0.0":
- version: 20.0.1
- resolution: "@types/jsdom@npm:20.0.1"
- dependencies:
- "@types/node": "npm:*"
- "@types/tough-cookie": "npm:*"
- parse5: "npm:^7.0.0"
- checksum: 10c0/3d4b2a3eab145674ee6da482607c5e48977869109f0f62560bf91ae1a792c9e847ac7c6aaf243ed2e97333cb3c51aef314ffa54a19ef174b8f9592dfcb836b25
- languageName: node
- linkType: hard
-
"@types/json-schema@npm:^7.0.15":
version: 7.0.15
resolution: "@types/json-schema@npm:7.0.15"
@@ -8425,13 +8111,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/stack-utils@npm:^2.0.0":
- version: 2.0.3
- resolution: "@types/stack-utils@npm:2.0.3"
- checksum: 10c0/1f4658385ae936330581bcb8aa3a066df03867d90281cdf89cc356d404bd6579be0f11902304e1f775d92df22c6dd761d4451c804b0a4fba973e06211e9bd77c
- languageName: node
- linkType: hard
-
"@types/statuses@npm:^2.0.4":
version: 2.0.5
resolution: "@types/statuses@npm:2.0.5"
@@ -8439,7 +8118,7 @@ __metadata:
languageName: node
linkType: hard
-"@types/tough-cookie@npm:*, @types/tough-cookie@npm:^4.0.5":
+"@types/tough-cookie@npm:^4.0.5":
version: 4.0.5
resolution: "@types/tough-cookie@npm:4.0.5"
checksum: 10c0/68c6921721a3dcb40451543db2174a145ef915bc8bcbe7ad4e59194a0238e776e782b896c7a59f4b93ac6acefca9161fccb31d1ce3b3445cb6faa467297fb473
@@ -8504,22 +8183,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/yargs-parser@npm:*":
- version: 21.0.3
- resolution: "@types/yargs-parser@npm:21.0.3"
- checksum: 10c0/e71c3bd9d0b73ca82e10bee2064c384ab70f61034bbfb78e74f5206283fc16a6d85267b606b5c22cb2a3338373586786fed595b2009825d6a9115afba36560a0
- languageName: node
- linkType: hard
-
-"@types/yargs@npm:^17.0.8":
- version: 17.0.33
- resolution: "@types/yargs@npm:17.0.33"
- dependencies:
- "@types/yargs-parser": "npm:*"
- checksum: 10c0/d16937d7ac30dff697801c3d6f235be2166df42e4a88bf730fa6dc09201de3727c0a9500c59a672122313341de5f24e45ee0ff579c08ce91928e519090b7906b
- languageName: node
- linkType: hard
-
"@typescript-eslint/eslint-plugin@npm:8.23.0, @typescript-eslint/eslint-plugin@npm:^8":
version: 8.23.0
resolution: "@typescript-eslint/eslint-plugin@npm:8.23.0"
@@ -8665,6 +8328,87 @@ __metadata:
languageName: node
linkType: hard
+"@vitest/expect@npm:3.0.9":
+ version: 3.0.9
+ resolution: "@vitest/expect@npm:3.0.9"
+ dependencies:
+ "@vitest/spy": "npm:3.0.9"
+ "@vitest/utils": "npm:3.0.9"
+ chai: "npm:^5.2.0"
+ tinyrainbow: "npm:^2.0.0"
+ checksum: 10c0/4e5eef8fbc9c3e47f3fb69dbbd5b51aabdf1b6de2f781556d37d79731678fc83cf4a01d146226b12a27df051a4110153a6172506c9c74ae08e5b924a9c947f08
+ languageName: node
+ linkType: hard
+
+"@vitest/mocker@npm:3.0.9":
+ version: 3.0.9
+ resolution: "@vitest/mocker@npm:3.0.9"
+ dependencies:
+ "@vitest/spy": "npm:3.0.9"
+ estree-walker: "npm:^3.0.3"
+ magic-string: "npm:^0.30.17"
+ peerDependencies:
+ msw: ^2.4.9
+ vite: ^5.0.0 || ^6.0.0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
+ checksum: 10c0/9083a83902ca550cf004413b9fc87c8367a789e18a3c5a61e63c72810f9153e7d1c100c66f0b0656ea1035a700a373d5b78b49de0963ab62333c720aeec9f1b3
+ languageName: node
+ linkType: hard
+
+"@vitest/pretty-format@npm:3.0.9, @vitest/pretty-format@npm:^3.0.9":
+ version: 3.0.9
+ resolution: "@vitest/pretty-format@npm:3.0.9"
+ dependencies:
+ tinyrainbow: "npm:^2.0.0"
+ checksum: 10c0/56ae7b1f14df2905b3205d4e121727631c4938ec44f76c1e9fa49923919010378f0dad70b1d277672f3ef45ddf6372140c8d1da95e45df8282f70b74328fce47
+ languageName: node
+ linkType: hard
+
+"@vitest/runner@npm:3.0.9":
+ version: 3.0.9
+ resolution: "@vitest/runner@npm:3.0.9"
+ dependencies:
+ "@vitest/utils": "npm:3.0.9"
+ pathe: "npm:^2.0.3"
+ checksum: 10c0/b276f238a16a6d02bb244f655d9cd8db8cce4708a6267cc48476a785ca8887741c440ae27b379a5bbbb6fe4f9f12675f13da0270253043195defd7a36bf15114
+ languageName: node
+ linkType: hard
+
+"@vitest/snapshot@npm:3.0.9":
+ version: 3.0.9
+ resolution: "@vitest/snapshot@npm:3.0.9"
+ dependencies:
+ "@vitest/pretty-format": "npm:3.0.9"
+ magic-string: "npm:^0.30.17"
+ pathe: "npm:^2.0.3"
+ checksum: 10c0/8298caa334d357cb22b1946cbebedb22f04d38fe080d6da7445873221fe6f89c2b82fe4f368d9eb8a62a77bd76d1b4234595bb085279d48130f09ba6b2e18637
+ languageName: node
+ linkType: hard
+
+"@vitest/spy@npm:3.0.9":
+ version: 3.0.9
+ resolution: "@vitest/spy@npm:3.0.9"
+ dependencies:
+ tinyspy: "npm:^3.0.2"
+ checksum: 10c0/993085dbaf9e651ca9516f88e440424d29279def998186628a1ebcab5558a3045fee8562630608f58303507135f6f3bf9970f65639f3b9baa8bf86cab3eb4742
+ languageName: node
+ linkType: hard
+
+"@vitest/utils@npm:3.0.9":
+ version: 3.0.9
+ resolution: "@vitest/utils@npm:3.0.9"
+ dependencies:
+ "@vitest/pretty-format": "npm:3.0.9"
+ loupe: "npm:^3.1.3"
+ tinyrainbow: "npm:^2.0.0"
+ checksum: 10c0/b966dfb3b926ee9bea59c1fb297abc67adaa23a8a582453ee81167b238446394693617a5e0523eb2791d6983173ef1c07bf28a76bd5a63b49a100610ed6b6a6c
+ languageName: node
+ linkType: hard
+
"@whatwg-node/disposablestack@npm:^0.0.5":
version: 0.0.5
resolution: "@whatwg-node/disposablestack@npm:0.0.5"
@@ -8773,13 +8517,6 @@ __metadata:
languageName: node
linkType: hard
-"abab@npm:^2.0.6":
- version: 2.0.6
- resolution: "abab@npm:2.0.6"
- checksum: 10c0/0b245c3c3ea2598fe0025abf7cc7bb507b06949d51e8edae5d12c1b847a0a0c09639abcb94788332b4e2044ac4491c1e8f571b51c7826fd4b0bda1685ad4a278
- languageName: node
- linkType: hard
-
"abbrev@npm:^3.0.0":
version: 3.0.0
resolution: "abbrev@npm:3.0.0"
@@ -8797,16 +8534,6 @@ __metadata:
languageName: node
linkType: hard
-"acorn-globals@npm:^7.0.0":
- version: 7.0.1
- resolution: "acorn-globals@npm:7.0.1"
- dependencies:
- acorn: "npm:^8.1.0"
- acorn-walk: "npm:^8.0.2"
- checksum: 10c0/7437f58e92d99292dbebd0e79531af27d706c9f272f31c675d793da6c82d897e75302a8744af13c7f7978a8399840f14a353b60cf21014647f71012982456d2b
- languageName: node
- linkType: hard
-
"acorn-jsx@npm:^5.0.0, acorn-jsx@npm:^5.3.2":
version: 5.3.2
resolution: "acorn-jsx@npm:5.3.2"
@@ -8816,16 +8543,7 @@ __metadata:
languageName: node
linkType: hard
-"acorn-walk@npm:^8.0.2":
- version: 8.3.4
- resolution: "acorn-walk@npm:8.3.4"
- dependencies:
- acorn: "npm:^8.11.0"
- checksum: 10c0/76537ac5fb2c37a64560feaf3342023dadc086c46da57da363e64c6148dc21b57d49ace26f949e225063acb6fb441eabffd89f7a3066de5ad37ab3e328927c62
- languageName: node
- linkType: hard
-
-"acorn@npm:^8.0.0, acorn@npm:^8.1.0, acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.8.1, acorn@npm:^8.8.2":
+"acorn@npm:^8.0.0, acorn@npm:^8.14.0, acorn@npm:^8.8.2":
version: 8.14.0
resolution: "acorn@npm:8.14.0"
bin:
@@ -8834,15 +8552,6 @@ __metadata:
languageName: node
linkType: hard
-"agent-base@npm:6":
- version: 6.0.2
- resolution: "agent-base@npm:6.0.2"
- dependencies:
- debug: "npm:4"
- checksum: 10c0/dc4f757e40b5f3e3d674bc9beb4f1048f4ee83af189bae39be99f57bf1f48dde166a8b0a5342a84b5944ee8e6ed1e5a9d801858f4ad44764e84957122fe46261
- languageName: node
- linkType: hard
-
"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2":
version: 7.1.3
resolution: "agent-base@npm:7.1.3"
@@ -8946,16 +8655,6 @@ __metadata:
languageName: node
linkType: hard
-"anymatch@npm:^3.0.3":
- version: 3.1.3
- resolution: "anymatch@npm:3.1.3"
- dependencies:
- normalize-path: "npm:^3.0.0"
- picomatch: "npm:^2.0.4"
- checksum: 10c0/57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac
- languageName: node
- linkType: hard
-
"argparse@npm:^1.0.7":
version: 1.0.10
resolution: "argparse@npm:1.0.10"
@@ -8972,9 +8671,18 @@ __metadata:
languageName: node
linkType: hard
-"aria-query@npm:5.3.0":
- version: 5.3.0
- resolution: "aria-query@npm:5.3.0"
+"aria-query@npm:5.1.3":
+ version: 5.1.3
+ resolution: "aria-query@npm:5.1.3"
+ dependencies:
+ deep-equal: "npm:^2.0.5"
+ checksum: 10c0/edcbc8044c4663d6f88f785e983e6784f98cb62b4ba1e9dd8d61b725d0203e4cfca38d676aee984c31f354103461102a3d583aa4fbe4fd0a89b679744f4e5faf
+ languageName: node
+ linkType: hard
+
+"aria-query@npm:5.3.0":
+ version: 5.3.0
+ resolution: "aria-query@npm:5.3.0"
dependencies:
dequal: "npm:^2.0.3"
checksum: 10c0/2bff0d4eba5852a9dd578ecf47eaef0e82cc52569b48469b0aac2db5145db0b17b7a58d9e01237706d1e14b7a1b0ac9b78e9c97027ad97679dd8f91b85da1469
@@ -8988,6 +8696,16 @@ __metadata:
languageName: node
linkType: hard
+"array-buffer-byte-length@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "array-buffer-byte-length@npm:1.0.2"
+ dependencies:
+ call-bound: "npm:^1.0.3"
+ is-array-buffer: "npm:^3.0.5"
+ checksum: 10c0/74e1d2d996941c7a1badda9cabb7caab8c449db9086407cad8a1b71d2604cc8abf105db8ca4e02c04579ec58b7be40279ddb09aea4784832984485499f48432d
+ languageName: node
+ linkType: hard
+
"array-buffer-byte-length@npm:^1.0.1":
version: 1.0.1
resolution: "array-buffer-byte-length@npm:1.0.1"
@@ -9093,6 +8811,13 @@ __metadata:
languageName: node
linkType: hard
+"assertion-error@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "assertion-error@npm:2.0.1"
+ checksum: 10c0/bbbcb117ac6480138f8c93cf7f535614282dea9dc828f540cdece85e3c665e8f78958b96afac52f29ff883c72638e6a87d469ecc9fe5bc902df03ed24a55dba8
+ languageName: node
+ linkType: hard
+
"astral-regex@npm:^2.0.0":
version: 2.0.0
resolution: "astral-regex@npm:2.0.0"
@@ -9164,48 +8889,6 @@ __metadata:
languageName: node
linkType: hard
-"babel-jest@npm:^29.7.0":
- version: 29.7.0
- resolution: "babel-jest@npm:29.7.0"
- dependencies:
- "@jest/transform": "npm:^29.7.0"
- "@types/babel__core": "npm:^7.1.14"
- babel-plugin-istanbul: "npm:^6.1.1"
- babel-preset-jest: "npm:^29.6.3"
- chalk: "npm:^4.0.0"
- graceful-fs: "npm:^4.2.9"
- slash: "npm:^3.0.0"
- peerDependencies:
- "@babel/core": ^7.8.0
- checksum: 10c0/2eda9c1391e51936ca573dd1aedfee07b14c59b33dbe16ef347873ddd777bcf6e2fc739681e9e9661ab54ef84a3109a03725be2ac32cd2124c07ea4401cbe8c1
- languageName: node
- linkType: hard
-
-"babel-plugin-istanbul@npm:^6.1.1":
- version: 6.1.1
- resolution: "babel-plugin-istanbul@npm:6.1.1"
- dependencies:
- "@babel/helper-plugin-utils": "npm:^7.0.0"
- "@istanbuljs/load-nyc-config": "npm:^1.0.0"
- "@istanbuljs/schema": "npm:^0.1.2"
- istanbul-lib-instrument: "npm:^5.0.4"
- test-exclude: "npm:^6.0.0"
- checksum: 10c0/1075657feb705e00fd9463b329921856d3775d9867c5054b449317d39153f8fbcebd3e02ebf00432824e647faff3683a9ca0a941325ef1afe9b3c4dd51b24beb
- languageName: node
- linkType: hard
-
-"babel-plugin-jest-hoist@npm:^29.6.3":
- version: 29.6.3
- resolution: "babel-plugin-jest-hoist@npm:29.6.3"
- dependencies:
- "@babel/template": "npm:^7.3.3"
- "@babel/types": "npm:^7.3.3"
- "@types/babel__core": "npm:^7.1.14"
- "@types/babel__traverse": "npm:^7.0.6"
- checksum: 10c0/7e6451caaf7dce33d010b8aafb970e62f1b0c0b57f4978c37b0d457bbcf0874d75a395a102daf0bae0bd14eafb9f6e9a165ee5e899c0a4f1f3bb2e07b304ed2e
- languageName: node
- linkType: hard
-
"babel-plugin-polyfill-corejs2@npm:^0.4.10":
version: 0.4.12
resolution: "babel-plugin-polyfill-corejs2@npm:0.4.12"
@@ -9249,31 +8932,6 @@ __metadata:
languageName: node
linkType: hard
-"babel-preset-current-node-syntax@npm:^1.0.0":
- version: 1.1.0
- resolution: "babel-preset-current-node-syntax@npm:1.1.0"
- dependencies:
- "@babel/plugin-syntax-async-generators": "npm:^7.8.4"
- "@babel/plugin-syntax-bigint": "npm:^7.8.3"
- "@babel/plugin-syntax-class-properties": "npm:^7.12.13"
- "@babel/plugin-syntax-class-static-block": "npm:^7.14.5"
- "@babel/plugin-syntax-import-attributes": "npm:^7.24.7"
- "@babel/plugin-syntax-import-meta": "npm:^7.10.4"
- "@babel/plugin-syntax-json-strings": "npm:^7.8.3"
- "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3"
- "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4"
- "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3"
- "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3"
- "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5"
- "@babel/plugin-syntax-top-level-await": "npm:^7.14.5"
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: 10c0/0b838d4412e3322cb4436f246e24e9c00bebcedfd8f00a2f51489db683bd35406bbd55a700759c28d26959c6e03f84dd6a1426f576f440267c1d7a73c5717281
- languageName: node
- linkType: hard
-
"babel-preset-fbjs@npm:^3.4.0":
version: 3.4.0
resolution: "babel-preset-fbjs@npm:3.4.0"
@@ -9311,18 +8969,6 @@ __metadata:
languageName: node
linkType: hard
-"babel-preset-jest@npm:^29.6.3":
- version: 29.6.3
- resolution: "babel-preset-jest@npm:29.6.3"
- dependencies:
- babel-plugin-jest-hoist: "npm:^29.6.3"
- babel-preset-current-node-syntax: "npm:^1.0.0"
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: 10c0/ec5fd0276b5630b05f0c14bb97cc3815c6b31600c683ebb51372e54dcb776cff790bdeeabd5b8d01ede375a040337ccbf6a3ccd68d3a34219125945e167ad943
- languageName: node
- linkType: hard
-
"bail@npm:^2.0.0":
version: 2.0.2
resolution: "bail@npm:2.0.2"
@@ -9485,6 +9131,13 @@ __metadata:
languageName: node
linkType: hard
+"cac@npm:^6.7.14":
+ version: 6.7.14
+ resolution: "cac@npm:6.7.14"
+ checksum: 10c0/4ee06aaa7bab8981f0d54e5f5f9d4adcd64058e9697563ce336d8a3878ed018ee18ebe5359b2430eceae87e0758e62ea2019c3f52ae6e211b1bd2e133856cd10
+ languageName: node
+ linkType: hard
+
"cacache@npm:^19.0.1":
version: 19.0.1
resolution: "cacache@npm:19.0.1"
@@ -9515,6 +9168,16 @@ __metadata:
languageName: node
linkType: hard
+"call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "call-bind-apply-helpers@npm:1.0.2"
+ dependencies:
+ es-errors: "npm:^1.3.0"
+ function-bind: "npm:^1.1.2"
+ checksum: 10c0/47bd9901d57b857590431243fea704ff18078b16890a6b3e021e12d279bbf211d039155e27d7566b374d49ee1f8189344bac9833dec7a20cdec370506361c938
+ languageName: node
+ linkType: hard
+
"call-bind-apply-helpers@npm:^1.0.1":
version: 1.0.1
resolution: "call-bind-apply-helpers@npm:1.0.1"
@@ -9538,6 +9201,18 @@ __metadata:
languageName: node
linkType: hard
+"call-bind@npm:^1.0.8":
+ version: 1.0.8
+ resolution: "call-bind@npm:1.0.8"
+ dependencies:
+ call-bind-apply-helpers: "npm:^1.0.0"
+ es-define-property: "npm:^1.0.0"
+ get-intrinsic: "npm:^1.2.4"
+ set-function-length: "npm:^1.2.2"
+ checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4
+ languageName: node
+ linkType: hard
+
"call-bound@npm:^1.0.2, call-bound@npm:^1.0.3":
version: 1.0.3
resolution: "call-bound@npm:1.0.3"
@@ -9548,6 +9223,16 @@ __metadata:
languageName: node
linkType: hard
+"call-bound@npm:^1.0.4":
+ version: 1.0.4
+ resolution: "call-bound@npm:1.0.4"
+ dependencies:
+ call-bind-apply-helpers: "npm:^1.0.2"
+ get-intrinsic: "npm:^1.3.0"
+ checksum: 10c0/f4796a6a0941e71c766aea672f63b72bc61234c4f4964dc6d7606e3664c307e7d77845328a8f3359ce39ddb377fed67318f9ee203dea1d47e46165dcf2917644
+ languageName: node
+ linkType: hard
+
"callsites@npm:^3.0.0":
version: 3.1.0
resolution: "callsites@npm:3.1.0"
@@ -9575,20 +9260,13 @@ __metadata:
languageName: node
linkType: hard
-"camelcase@npm:^5.0.0, camelcase@npm:^5.3.1":
+"camelcase@npm:^5.0.0":
version: 5.3.1
resolution: "camelcase@npm:5.3.1"
checksum: 10c0/92ff9b443bfe8abb15f2b1513ca182d16126359ad4f955ebc83dc4ddcc4ef3fdd2c078bc223f2673dc223488e75c99b16cc4d056624374b799e6a1555cf61b23
languageName: node
linkType: hard
-"camelcase@npm:^6.2.0":
- version: 6.3.0
- resolution: "camelcase@npm:6.3.0"
- checksum: 10c0/0d701658219bd3116d12da3eab31acddb3f9440790c0792e0d398f0a520a6a4058018e546862b6fba89d7ae990efaeb97da71e1913e9ebf5a8b5621a3d55c710
- languageName: node
- linkType: hard
-
"camelcase@npm:^8.0.0":
version: 8.0.0
resolution: "camelcase@npm:8.0.0"
@@ -9621,6 +9299,19 @@ __metadata:
languageName: node
linkType: hard
+"chai@npm:^5.2.0":
+ version: 5.2.0
+ resolution: "chai@npm:5.2.0"
+ dependencies:
+ assertion-error: "npm:^2.0.1"
+ check-error: "npm:^2.1.1"
+ deep-eql: "npm:^5.0.1"
+ loupe: "npm:^3.1.0"
+ pathval: "npm:^2.0.0"
+ checksum: 10c0/dfd1cb719c7cebb051b727672d382a35338af1470065cb12adb01f4ee451bbf528e0e0f9ab2016af5fc1eea4df6e7f4504dc8443f8f00bd8fb87ad32dc516f7d
+ languageName: node
+ linkType: hard
+
"chalk@npm:^3.0.0":
version: 3.0.0
resolution: "chalk@npm:3.0.0"
@@ -9730,13 +9421,6 @@ __metadata:
languageName: node
linkType: hard
-"char-regex@npm:^1.0.2":
- version: 1.0.2
- resolution: "char-regex@npm:1.0.2"
- checksum: 10c0/57a09a86371331e0be35d9083ba429e86c4f4648ecbe27455dbfb343037c16ee6fdc7f6b61f433a57cc5ded5561d71c56a150e018f40c2ffb7bc93a26dae341e
- languageName: node
- linkType: hard
-
"character-entities-html4@npm:^2.0.0":
version: 2.1.0
resolution: "character-entities-html4@npm:2.1.0"
@@ -9779,6 +9463,13 @@ __metadata:
languageName: node
linkType: hard
+"check-error@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "check-error@npm:2.1.1"
+ checksum: 10c0/979f13eccab306cf1785fa10941a590b4e7ea9916ea2a4f8c87f0316fc3eab07eabefb6e587424ef0f88cbcd3805791f172ea739863ca3d7ce2afc54641c7f0e
+ languageName: node
+ linkType: hard
+
"chokidar@npm:^4.0.0":
version: 4.0.1
resolution: "chokidar@npm:4.0.1"
@@ -9804,20 +9495,6 @@ __metadata:
languageName: node
linkType: hard
-"ci-info@npm:^3.2.0":
- version: 3.9.0
- resolution: "ci-info@npm:3.9.0"
- checksum: 10c0/6f0109e36e111684291d46123d491bc4e7b7a1934c3a20dea28cba89f1d4a03acd892f5f6a81ed3855c38647e285a150e3c9ba062e38943bef57fee6c1554c3a
- languageName: node
- linkType: hard
-
-"cjs-module-lexer@npm:^1.0.0":
- version: 1.4.1
- resolution: "cjs-module-lexer@npm:1.4.1"
- checksum: 10c0/5a7d8279629c9ba8ccf38078c2fed75b7737973ced22b9b5a54180efa57fb2fe2bb7bec6aec55e3b8f3f5044f5d7b240347ad9bd285e7c3d0ee5b0a1d0504dfc
- languageName: node
- linkType: hard
-
"classnames@npm:^2.5.1":
version: 2.5.1
resolution: "classnames@npm:2.5.1"
@@ -9936,6 +9613,7 @@ __metadata:
rimraf: "npm:^6"
typescript: "npm:^5.7.3"
typescript-plugin-css-modules: "npm:^5"
+ vitest: "npm:^3"
languageName: unknown
linkType: soft
@@ -9960,13 +9638,6 @@ __metadata:
languageName: node
linkType: hard
-"collect-v8-coverage@npm:^1.0.0":
- version: 1.0.2
- resolution: "collect-v8-coverage@npm:1.0.2"
- checksum: 10c0/ed7008e2e8b6852c5483b444a3ae6e976e088d4335a85aa0a9db2861c5f1d31bd2d7ff97a60469b3388deeba661a619753afbe201279fb159b4b9548ab8269a1
- languageName: node
- linkType: hard
-
"color-convert@npm:^2.0.1":
version: 2.0.1
resolution: "color-convert@npm:2.0.1"
@@ -10202,23 +9873,6 @@ __metadata:
languageName: node
linkType: hard
-"create-jest@npm:^29.7.0":
- version: 29.7.0
- resolution: "create-jest@npm:29.7.0"
- dependencies:
- "@jest/types": "npm:^29.6.3"
- chalk: "npm:^4.0.0"
- exit: "npm:^0.1.2"
- graceful-fs: "npm:^4.2.9"
- jest-config: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- prompts: "npm:^2.0.1"
- bin:
- create-jest: bin/create-jest.js
- checksum: 10c0/e7e54c280692470d3398f62a6238fd396327e01c6a0757002833f06d00afc62dd7bfe04ff2b9cd145264460e6b4d1eb8386f2925b7e567f97939843b7b0e812f
- languageName: node
- linkType: hard
-
"crelt@npm:^1.0.5":
version: 1.0.6
resolution: "crelt@npm:1.0.6"
@@ -10292,29 +9946,6 @@ __metadata:
languageName: node
linkType: hard
-"cssom@npm:^0.5.0":
- version: 0.5.0
- resolution: "cssom@npm:0.5.0"
- checksum: 10c0/8c4121c243baf0678c65dcac29b201ff0067dfecf978de9d5c83b2ff127a8fdefd2bfd54577f5ad8c80ed7d2c8b489ae01c82023545d010c4ecb87683fb403dd
- languageName: node
- linkType: hard
-
-"cssom@npm:~0.3.6":
- version: 0.3.8
- resolution: "cssom@npm:0.3.8"
- checksum: 10c0/d74017b209440822f9e24d8782d6d2e808a8fdd58fa626a783337222fe1c87a518ba944d4c88499031b4786e68772c99dfae616638d71906fe9f203aeaf14411
- languageName: node
- linkType: hard
-
-"cssstyle@npm:^2.3.0":
- version: 2.3.0
- resolution: "cssstyle@npm:2.3.0"
- dependencies:
- cssom: "npm:~0.3.6"
- checksum: 10c0/863400da2a458f73272b9a55ba7ff05de40d850f22eb4f37311abebd7eff801cf1cd2fb04c4c92b8c3daed83fe766e52e4112afb7bc88d86c63a9c2256a7d178
- languageName: node
- linkType: hard
-
"csstype@npm:^3.0.2":
version: 3.1.3
resolution: "csstype@npm:3.1.3"
@@ -10640,17 +10271,6 @@ __metadata:
languageName: node
linkType: hard
-"data-urls@npm:^3.0.2":
- version: 3.0.2
- resolution: "data-urls@npm:3.0.2"
- dependencies:
- abab: "npm:^2.0.6"
- whatwg-mimetype: "npm:^3.0.0"
- whatwg-url: "npm:^11.0.0"
- checksum: 10c0/051c3aaaf3e961904f136aab095fcf6dff4db23a7fc759dd8ba7b3e6ba03fc07ef608086caad8ab910d864bd3b5e57d0d2f544725653d77c96a2c971567045f4
- languageName: node
- linkType: hard
-
"data-view-buffer@npm:^1.0.1":
version: 1.0.1
resolution: "data-view-buffer@npm:1.0.1"
@@ -10729,13 +10349,6 @@ __metadata:
languageName: node
linkType: hard
-"decimal.js@npm:^10.4.2":
- version: 10.4.3
- resolution: "decimal.js@npm:10.4.3"
- checksum: 10c0/6d60206689ff0911f0ce968d40f163304a6c1bc739927758e6efc7921cfa630130388966f16bf6ef6b838cb33679fbe8e7a78a2f3c478afce841fd55ac8fb8ee
- languageName: node
- linkType: hard
-
"decode-named-character-reference@npm:^1.0.0":
version: 1.0.2
resolution: "decode-named-character-reference@npm:1.0.2"
@@ -10752,15 +10365,36 @@ __metadata:
languageName: node
linkType: hard
-"dedent@npm:^1.0.0":
- version: 1.5.3
- resolution: "dedent@npm:1.5.3"
- peerDependencies:
- babel-plugin-macros: ^3.1.0
- peerDependenciesMeta:
- babel-plugin-macros:
- optional: true
- checksum: 10c0/d94bde6e6f780be4da4fd760288fcf755ec368872f4ac5218197200d86430aeb8d90a003a840bff1c20221188e3f23adced0119cb811c6873c70d0ac66d12832
+"deep-eql@npm:^5.0.1":
+ version: 5.0.2
+ resolution: "deep-eql@npm:5.0.2"
+ checksum: 10c0/7102cf3b7bb719c6b9c0db2e19bf0aa9318d141581befe8c7ce8ccd39af9eaa4346e5e05adef7f9bd7015da0f13a3a25dcfe306ef79dc8668aedbecb658dd247
+ languageName: node
+ linkType: hard
+
+"deep-equal@npm:^2.0.5":
+ version: 2.2.3
+ resolution: "deep-equal@npm:2.2.3"
+ dependencies:
+ array-buffer-byte-length: "npm:^1.0.0"
+ call-bind: "npm:^1.0.5"
+ es-get-iterator: "npm:^1.1.3"
+ get-intrinsic: "npm:^1.2.2"
+ is-arguments: "npm:^1.1.1"
+ is-array-buffer: "npm:^3.0.2"
+ is-date-object: "npm:^1.0.5"
+ is-regex: "npm:^1.1.4"
+ is-shared-array-buffer: "npm:^1.0.2"
+ isarray: "npm:^2.0.5"
+ object-is: "npm:^1.1.5"
+ object-keys: "npm:^1.1.1"
+ object.assign: "npm:^4.1.4"
+ regexp.prototype.flags: "npm:^1.5.1"
+ side-channel: "npm:^1.0.4"
+ which-boxed-primitive: "npm:^1.0.2"
+ which-collection: "npm:^1.0.1"
+ which-typed-array: "npm:^1.1.13"
+ checksum: 10c0/a48244f90fa989f63ff5ef0cc6de1e4916b48ea0220a9c89a378561960814794a5800c600254482a2c8fd2e49d6c2e196131dc983976adb024c94a42dfe4949f
languageName: node
linkType: hard
@@ -10923,13 +10557,6 @@ __metadata:
languageName: node
linkType: hard
-"detect-newline@npm:^3.0.0":
- version: 3.1.0
- resolution: "detect-newline@npm:3.1.0"
- checksum: 10c0/c38cfc8eeb9fda09febb44bcd85e467c970d4e3bf526095394e5a4f18bc26dd0cf6b22c69c1fa9969261521c593836db335c2795218f6d781a512aea2fb8209d
- languageName: node
- linkType: hard
-
"detect-package-manager@npm:^3":
version: 3.0.2
resolution: "detect-package-manager@npm:3.0.2"
@@ -10955,13 +10582,6 @@ __metadata:
languageName: node
linkType: hard
-"diff-sequences@npm:^29.6.3":
- version: 29.6.3
- resolution: "diff-sequences@npm:29.6.3"
- checksum: 10c0/32e27ac7dbffdf2fb0eb5a84efd98a9ad084fbabd5ac9abb8757c6770d5320d2acd172830b28c4add29bb873d59420601dfc805ac4064330ce59b1adfd0593b2
- languageName: node
- linkType: hard
-
"dir-glob@npm:^3.0.1":
version: 3.0.1
resolution: "dir-glob@npm:3.0.1"
@@ -11014,15 +10634,6 @@ __metadata:
languageName: node
linkType: hard
-"domexception@npm:^4.0.0":
- version: 4.0.0
- resolution: "domexception@npm:4.0.0"
- dependencies:
- webidl-conversions: "npm:^7.0.0"
- checksum: 10c0/774277cd9d4df033f852196e3c0077a34dbd15a96baa4d166e0e47138a80f4c0bdf0d94e4703e6ff5883cec56bb821a6fff84402d8a498e31de7c87eb932a294
- languageName: node
- linkType: hard
-
"dot-case@npm:^2.1.0":
version: 2.1.1
resolution: "dot-case@npm:2.1.1"
@@ -11099,13 +10710,6 @@ __metadata:
languageName: node
linkType: hard
-"emittery@npm:^0.13.1":
- version: 0.13.1
- resolution: "emittery@npm:0.13.1"
- checksum: 10c0/1573d0ae29ab34661b6c63251ff8f5facd24ccf6a823f19417ae8ba8c88ea450325788c67f16c99edec8de4b52ce93a10fe441ece389fd156e88ee7dab9bfa35
- languageName: node
- linkType: hard
-
"emoji-regex@npm:^10.3.0":
version: 10.4.0
resolution: "emoji-regex@npm:10.4.0"
@@ -11281,6 +10885,23 @@ __metadata:
languageName: node
linkType: hard
+"es-get-iterator@npm:^1.1.3":
+ version: 1.1.3
+ resolution: "es-get-iterator@npm:1.1.3"
+ dependencies:
+ call-bind: "npm:^1.0.2"
+ get-intrinsic: "npm:^1.1.3"
+ has-symbols: "npm:^1.0.3"
+ is-arguments: "npm:^1.1.1"
+ is-map: "npm:^2.0.2"
+ is-set: "npm:^2.0.2"
+ is-string: "npm:^1.0.7"
+ isarray: "npm:^2.0.5"
+ stop-iteration-iterator: "npm:^1.0.0"
+ checksum: 10c0/ebd11effa79851ea75d7f079405f9d0dc185559fd65d986c6afea59a0ff2d46c2ed8675f19f03dce7429d7f6c14ff9aede8d121fbab78d75cfda6a263030bac0
+ languageName: node
+ linkType: hard
+
"es-iterator-helpers@npm:^1.1.0":
version: 1.2.0
resolution: "es-iterator-helpers@npm:1.2.0"
@@ -11304,6 +10925,13 @@ __metadata:
languageName: node
linkType: hard
+"es-module-lexer@npm:^1.6.0":
+ version: 1.6.0
+ resolution: "es-module-lexer@npm:1.6.0"
+ checksum: 10c0/667309454411c0b95c476025929881e71400d74a746ffa1ff4cb450bd87f8e33e8eef7854d68e401895039ac0bac64e7809acbebb6253e055dd49ea9e3ea9212
+ languageName: node
+ linkType: hard
+
"es-object-atoms@npm:^1.0.0":
version: 1.0.0
resolution: "es-object-atoms@npm:1.0.0"
@@ -11313,6 +10941,15 @@ __metadata:
languageName: node
linkType: hard
+"es-object-atoms@npm:^1.1.1":
+ version: 1.1.1
+ resolution: "es-object-atoms@npm:1.1.1"
+ dependencies:
+ es-errors: "npm:^1.3.0"
+ checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c
+ languageName: node
+ linkType: hard
+
"es-set-tostringtag@npm:^2.0.3":
version: 2.0.3
resolution: "es-set-tostringtag@npm:2.0.3"
@@ -11454,6 +11091,92 @@ __metadata:
languageName: node
linkType: hard
+"esbuild@npm:^0.25.0":
+ version: 0.25.1
+ resolution: "esbuild@npm:0.25.1"
+ dependencies:
+ "@esbuild/aix-ppc64": "npm:0.25.1"
+ "@esbuild/android-arm": "npm:0.25.1"
+ "@esbuild/android-arm64": "npm:0.25.1"
+ "@esbuild/android-x64": "npm:0.25.1"
+ "@esbuild/darwin-arm64": "npm:0.25.1"
+ "@esbuild/darwin-x64": "npm:0.25.1"
+ "@esbuild/freebsd-arm64": "npm:0.25.1"
+ "@esbuild/freebsd-x64": "npm:0.25.1"
+ "@esbuild/linux-arm": "npm:0.25.1"
+ "@esbuild/linux-arm64": "npm:0.25.1"
+ "@esbuild/linux-ia32": "npm:0.25.1"
+ "@esbuild/linux-loong64": "npm:0.25.1"
+ "@esbuild/linux-mips64el": "npm:0.25.1"
+ "@esbuild/linux-ppc64": "npm:0.25.1"
+ "@esbuild/linux-riscv64": "npm:0.25.1"
+ "@esbuild/linux-s390x": "npm:0.25.1"
+ "@esbuild/linux-x64": "npm:0.25.1"
+ "@esbuild/netbsd-arm64": "npm:0.25.1"
+ "@esbuild/netbsd-x64": "npm:0.25.1"
+ "@esbuild/openbsd-arm64": "npm:0.25.1"
+ "@esbuild/openbsd-x64": "npm:0.25.1"
+ "@esbuild/sunos-x64": "npm:0.25.1"
+ "@esbuild/win32-arm64": "npm:0.25.1"
+ "@esbuild/win32-ia32": "npm:0.25.1"
+ "@esbuild/win32-x64": "npm:0.25.1"
+ dependenciesMeta:
+ "@esbuild/aix-ppc64":
+ optional: true
+ "@esbuild/android-arm":
+ optional: true
+ "@esbuild/android-arm64":
+ optional: true
+ "@esbuild/android-x64":
+ optional: true
+ "@esbuild/darwin-arm64":
+ optional: true
+ "@esbuild/darwin-x64":
+ optional: true
+ "@esbuild/freebsd-arm64":
+ optional: true
+ "@esbuild/freebsd-x64":
+ optional: true
+ "@esbuild/linux-arm":
+ optional: true
+ "@esbuild/linux-arm64":
+ optional: true
+ "@esbuild/linux-ia32":
+ optional: true
+ "@esbuild/linux-loong64":
+ optional: true
+ "@esbuild/linux-mips64el":
+ optional: true
+ "@esbuild/linux-ppc64":
+ optional: true
+ "@esbuild/linux-riscv64":
+ optional: true
+ "@esbuild/linux-s390x":
+ optional: true
+ "@esbuild/linux-x64":
+ optional: true
+ "@esbuild/netbsd-arm64":
+ optional: true
+ "@esbuild/netbsd-x64":
+ optional: true
+ "@esbuild/openbsd-arm64":
+ optional: true
+ "@esbuild/openbsd-x64":
+ optional: true
+ "@esbuild/sunos-x64":
+ optional: true
+ "@esbuild/win32-arm64":
+ optional: true
+ "@esbuild/win32-ia32":
+ optional: true
+ "@esbuild/win32-x64":
+ optional: true
+ bin:
+ esbuild: bin/esbuild
+ checksum: 10c0/80fca30dd0f21aec23fdfab34f0a8d5f55df5097dd7f475f2ab561d45662c32ee306f5649071cd1a0ba0614b164c48ca3dc3ee1551a4daf204b8af90e4d893f5
+ languageName: node
+ linkType: hard
+
"escalade@npm:^3.1.1, escalade@npm:^3.2.0":
version: 3.2.0
resolution: "escalade@npm:3.2.0"
@@ -11475,13 +11198,6 @@ __metadata:
languageName: node
linkType: hard
-"escape-string-regexp@npm:^2.0.0":
- version: 2.0.0
- resolution: "escape-string-regexp@npm:2.0.0"
- checksum: 10c0/2530479fe8db57eace5e8646c9c2a9c80fa279614986d16dcc6bcaceb63ae77f05a851ba6c43756d816c61d7f4534baf56e3c705e3e0d884818a46808811c507
- languageName: node
- linkType: hard
-
"escape-string-regexp@npm:^4.0.0":
version: 4.0.0
resolution: "escape-string-regexp@npm:4.0.0"
@@ -11496,24 +11212,6 @@ __metadata:
languageName: node
linkType: hard
-"escodegen@npm:^2.0.0":
- version: 2.1.0
- resolution: "escodegen@npm:2.1.0"
- dependencies:
- esprima: "npm:^4.0.1"
- estraverse: "npm:^5.2.0"
- esutils: "npm:^2.0.2"
- source-map: "npm:~0.6.1"
- dependenciesMeta:
- source-map:
- optional: true
- bin:
- escodegen: bin/escodegen.js
- esgenerate: bin/esgenerate.js
- checksum: 10c0/e1450a1f75f67d35c061bf0d60888b15f62ab63aef9df1901cffc81cffbbb9e8b3de237c5502cf8613a017c1df3a3003881307c78835a1ab54d8c8d2206e01d3
- languageName: node
- linkType: hard
-
"eslint-config-prettier@npm:^10":
version: 10.0.1
resolution: "eslint-config-prettier@npm:10.0.1"
@@ -11695,7 +11393,7 @@ __metadata:
languageName: node
linkType: hard
-"esprima@npm:^4.0.0, esprima@npm:^4.0.1":
+"esprima@npm:^4.0.0":
version: 4.0.1
resolution: "esprima@npm:4.0.1"
bin:
@@ -11803,7 +11501,7 @@ __metadata:
languageName: node
linkType: hard
-"estree-walker@npm:^3.0.0":
+"estree-walker@npm:^3.0.0, estree-walker@npm:^3.0.3":
version: 3.0.3
resolution: "estree-walker@npm:3.0.3"
dependencies:
@@ -11856,23 +11554,10 @@ __metadata:
languageName: node
linkType: hard
-"exit@npm:^0.1.2":
- version: 0.1.2
- resolution: "exit@npm:0.1.2"
- checksum: 10c0/71d2ad9b36bc25bb8b104b17e830b40a08989be7f7d100b13269aaae7c3784c3e6e1e88a797e9e87523993a25ba27c8958959a554535370672cfb4d824af8989
- languageName: node
- linkType: hard
-
-"expect@npm:^29.0.0, expect@npm:^29.7.0":
- version: 29.7.0
- resolution: "expect@npm:29.7.0"
- dependencies:
- "@jest/expect-utils": "npm:^29.7.0"
- jest-get-type: "npm:^29.6.3"
- jest-matcher-utils: "npm:^29.7.0"
- jest-message-util: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- checksum: 10c0/2eddeace66e68b8d8ee5f7be57f3014b19770caaf6815c7a08d131821da527fb8c8cb7b3dcd7c883d2d3d8d184206a4268984618032d1e4b16dc8d6596475d41
+"expect-type@npm:^1.1.0":
+ version: 1.2.0
+ resolution: "expect-type@npm:1.2.0"
+ checksum: 10c0/6069e1980bf16b9385646800e23499c1447df636c433014f6bbabe4bb0e20bd0033f30d38a6f9ae0938b0203a9e870cc82cdfd74b7c837b480cefb8e8240d8e8
languageName: node
linkType: hard
@@ -12089,7 +11774,7 @@ __metadata:
languageName: node
linkType: hard
-"find-up@npm:^4.0.0, find-up@npm:^4.1.0":
+"find-up@npm:^4.1.0":
version: 4.1.0
resolution: "find-up@npm:4.1.0"
dependencies:
@@ -12145,6 +11830,15 @@ __metadata:
languageName: node
linkType: hard
+"for-each@npm:^0.3.5":
+ version: 0.3.5
+ resolution: "for-each@npm:0.3.5"
+ dependencies:
+ is-callable: "npm:^1.2.7"
+ checksum: 10c0/0e0b50f6a843a282637d43674d1fb278dda1dd85f4f99b640024cfb10b85058aac0cc781bf689d5fe50b4b7f638e91e548560723a4e76e04fe96ae35ef039cee
+ languageName: node
+ linkType: hard
+
"foreground-child@npm:^3.1.0":
version: 3.3.0
resolution: "foreground-child@npm:3.3.0"
@@ -12232,7 +11926,7 @@ __metadata:
languageName: node
linkType: hard
-"fsevents@npm:^2.3.2, fsevents@npm:~2.3.2, fsevents@npm:~2.3.3":
+"fsevents@npm:~2.3.2, fsevents@npm:~2.3.3":
version: 2.3.3
resolution: "fsevents@npm:2.3.3"
dependencies:
@@ -12242,7 +11936,7 @@ __metadata:
languageName: node
linkType: hard
-"fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin":
+"fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin":
version: 2.3.3
resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1"
dependencies:
@@ -12298,6 +11992,24 @@ __metadata:
languageName: node
linkType: hard
+"get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.2, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.3.0":
+ version: 1.3.0
+ resolution: "get-intrinsic@npm:1.3.0"
+ dependencies:
+ call-bind-apply-helpers: "npm:^1.0.2"
+ es-define-property: "npm:^1.0.1"
+ es-errors: "npm:^1.3.0"
+ es-object-atoms: "npm:^1.1.1"
+ function-bind: "npm:^1.1.2"
+ get-proto: "npm:^1.0.1"
+ gopd: "npm:^1.2.0"
+ has-symbols: "npm:^1.1.0"
+ hasown: "npm:^2.0.2"
+ math-intrinsics: "npm:^1.1.0"
+ checksum: 10c0/52c81808af9a8130f581e6a6a83e1ba4a9f703359e7a438d1369a5267a25412322f03dcbd7c549edaef0b6214a0630a28511d7df0130c93cfd380f4fa0b5b66a
+ languageName: node
+ linkType: hard
+
"get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4":
version: 1.2.4
resolution: "get-intrinsic@npm:1.2.4"
@@ -12336,13 +12048,6 @@ __metadata:
languageName: node
linkType: hard
-"get-package-type@npm:^0.1.0":
- version: 0.1.0
- resolution: "get-package-type@npm:0.1.0"
- checksum: 10c0/e34cdf447fdf1902a1f6d5af737eaadf606d2ee3518287abde8910e04159368c268568174b2e71102b87b26c2020486f126bfca9c4fb1ceb986ff99b52ecd1be
- languageName: node
- linkType: hard
-
"get-port@npm:^7.1.0":
version: 7.1.0
resolution: "get-port@npm:7.1.0"
@@ -12350,7 +12055,7 @@ __metadata:
languageName: node
linkType: hard
-"get-proto@npm:^1.0.0":
+"get-proto@npm:^1.0.0, get-proto@npm:^1.0.1":
version: 1.0.1
resolution: "get-proto@npm:1.0.1"
dependencies:
@@ -12445,7 +12150,7 @@ __metadata:
languageName: node
linkType: hard
-"glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6":
+"glob@npm:^7.1.1, glob@npm:^7.1.6":
version: 7.2.3
resolution: "glob@npm:7.2.3"
dependencies:
@@ -12544,7 +12249,7 @@ __metadata:
languageName: node
linkType: hard
-"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9":
+"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6":
version: 4.2.11
resolution: "graceful-fs@npm:4.2.11"
checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2
@@ -12622,6 +12327,16 @@ __metadata:
languageName: node
linkType: hard
+"happy-dom@npm:^17":
+ version: 17.4.4
+ resolution: "happy-dom@npm:17.4.4"
+ dependencies:
+ webidl-conversions: "npm:^7.0.0"
+ whatwg-mimetype: "npm:^3.0.0"
+ checksum: 10c0/a84d36fc633ab5e5a36ae55d82b8955d1e65394242b4dba551ab447579e47f8565de61c361920c248ed2823883715dfa513ce46666800ad53c21dbde858048c2
+ languageName: node
+ linkType: hard
+
"has-bigints@npm:^1.0.2":
version: 1.0.2
resolution: "has-bigints@npm:1.0.2"
@@ -12905,22 +12620,6 @@ __metadata:
languageName: node
linkType: hard
-"html-encoding-sniffer@npm:^3.0.0":
- version: 3.0.0
- resolution: "html-encoding-sniffer@npm:3.0.0"
- dependencies:
- whatwg-encoding: "npm:^2.0.0"
- checksum: 10c0/b17b3b0fb5d061d8eb15121c3b0b536376c3e295ecaf09ba48dd69c6b6c957839db124fe1e2b3f11329753a4ee01aa7dedf63b7677999e86da17fbbdd82c5386
- languageName: node
- linkType: hard
-
-"html-escaper@npm:^2.0.0":
- version: 2.0.2
- resolution: "html-escaper@npm:2.0.2"
- checksum: 10c0/208e8a12de1a6569edbb14544f4567e6ce8ecc30b9394fcaa4e7bb1e60c12a7c9a1ed27e31290817157e8626f3a4f29e76c8747030822eb84a6abb15c255f0a0
- languageName: node
- linkType: hard
-
"html-url-attributes@npm:^3.0.0":
version: 3.0.1
resolution: "html-url-attributes@npm:3.0.1"
@@ -12965,17 +12664,6 @@ __metadata:
languageName: node
linkType: hard
-"http-proxy-agent@npm:^5.0.0":
- version: 5.0.0
- resolution: "http-proxy-agent@npm:5.0.0"
- dependencies:
- "@tootallnate/once": "npm:2"
- agent-base: "npm:6"
- debug: "npm:4"
- checksum: 10c0/32a05e413430b2c1e542e5c74b38a9f14865301dd69dff2e53ddb684989440e3d2ce0c4b64d25eb63cf6283e6265ff979a61cf93e3ca3d23047ddfdc8df34a32
- languageName: node
- linkType: hard
-
"http-proxy-agent@npm:^7.0.0":
version: 7.0.2
resolution: "http-proxy-agent@npm:7.0.2"
@@ -12986,16 +12674,6 @@ __metadata:
languageName: node
linkType: hard
-"https-proxy-agent@npm:^5.0.1":
- version: 5.0.1
- resolution: "https-proxy-agent@npm:5.0.1"
- dependencies:
- agent-base: "npm:6"
- debug: "npm:4"
- checksum: 10c0/6dd639f03434003577c62b27cafdb864784ef19b2de430d8ae2a1d45e31c4fd60719e5637b44db1a88a046934307da7089e03d6089ec3ddacc1189d8de8897d1
- languageName: node
- linkType: hard
-
"https-proxy-agent@npm:^7.0.0, https-proxy-agent@npm:^7.0.1":
version: 7.0.6
resolution: "https-proxy-agent@npm:7.0.6"
@@ -13058,7 +12736,7 @@ __metadata:
languageName: node
linkType: hard
-"iconv-lite@npm:0.6, iconv-lite@npm:0.6.3, iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3":
+"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3":
version: 0.6.3
resolution: "iconv-lite@npm:0.6.3"
dependencies:
@@ -13155,18 +12833,6 @@ __metadata:
languageName: node
linkType: hard
-"import-local@npm:^3.0.2":
- version: 3.2.0
- resolution: "import-local@npm:3.2.0"
- dependencies:
- pkg-dir: "npm:^4.2.0"
- resolve-cwd: "npm:^3.0.0"
- bin:
- import-local-fixture: fixtures/cli.js
- checksum: 10c0/94cd6367a672b7e0cb026970c85b76902d2710a64896fa6de93bd5c571dd03b228c5759308959de205083e3b1c61e799f019c9e36ee8e9c523b993e1057f0433
- languageName: node
- linkType: hard
-
"imurmurhash@npm:^0.1.4":
version: 0.1.4
resolution: "imurmurhash@npm:0.1.4"
@@ -13246,6 +12912,17 @@ __metadata:
languageName: node
linkType: hard
+"internal-slot@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "internal-slot@npm:1.1.0"
+ dependencies:
+ es-errors: "npm:^1.3.0"
+ hasown: "npm:^2.0.2"
+ side-channel: "npm:^1.1.0"
+ checksum: 10c0/03966f5e259b009a9bf1a78d60da920df198af4318ec004f57b8aef1dd3fe377fbc8cce63a96e8c810010302654de89f9e19de1cd8ad0061d15be28a695465c7
+ languageName: node
+ linkType: hard
+
"internmap@npm:1 - 2":
version: 2.0.3
resolution: "internmap@npm:2.0.3"
@@ -13311,6 +12988,27 @@ __metadata:
languageName: node
linkType: hard
+"is-arguments@npm:^1.1.1":
+ version: 1.2.0
+ resolution: "is-arguments@npm:1.2.0"
+ dependencies:
+ call-bound: "npm:^1.0.2"
+ has-tostringtag: "npm:^1.0.2"
+ checksum: 10c0/6377344b31e9fcb707c6751ee89b11f132f32338e6a782ec2eac9393b0cbd32235dad93052998cda778ee058754860738341d8114910d50ada5615912bb929fc
+ languageName: node
+ linkType: hard
+
+"is-array-buffer@npm:^3.0.2, is-array-buffer@npm:^3.0.5":
+ version: 3.0.5
+ resolution: "is-array-buffer@npm:3.0.5"
+ dependencies:
+ call-bind: "npm:^1.0.8"
+ call-bound: "npm:^1.0.3"
+ get-intrinsic: "npm:^1.2.6"
+ checksum: 10c0/c5c9f25606e86dbb12e756694afbbff64bc8b348d1bc989324c037e1068695131930199d6ad381952715dad3a9569333817f0b1a72ce5af7f883ce802e49c83d
+ languageName: node
+ linkType: hard
+
"is-array-buffer@npm:^3.0.4":
version: 3.0.4
resolution: "is-array-buffer@npm:3.0.4"
@@ -13436,13 +13134,6 @@ __metadata:
languageName: node
linkType: hard
-"is-generator-fn@npm:^2.0.0":
- version: 2.1.0
- resolution: "is-generator-fn@npm:2.1.0"
- checksum: 10c0/2957cab387997a466cd0bf5c1b6047bd21ecb32bdcfd8996b15747aa01002c1c88731802f1b3d34ac99f4f6874b626418bd118658cf39380fe5fff32a3af9c4d
- languageName: node
- linkType: hard
-
"is-generator-function@npm:^1.0.10":
version: 1.0.10
resolution: "is-generator-function@npm:1.0.10"
@@ -13516,7 +13207,7 @@ __metadata:
languageName: node
linkType: hard
-"is-map@npm:^2.0.3":
+"is-map@npm:^2.0.2, is-map@npm:^2.0.3":
version: 2.0.3
resolution: "is-map@npm:2.0.3"
checksum: 10c0/2c4d431b74e00fdda7162cd8e4b763d6f6f217edf97d4f8538b94b8702b150610e2c64961340015fe8df5b1fcee33ccd2e9b62619c4a8a3a155f8de6d6d355fc
@@ -13575,13 +13266,6 @@ __metadata:
languageName: node
linkType: hard
-"is-potential-custom-element-name@npm:^1.0.1":
- version: 1.0.1
- resolution: "is-potential-custom-element-name@npm:1.0.1"
- checksum: 10c0/b73e2f22bc863b0939941d369486d308b43d7aef1f9439705e3582bfccaa4516406865e32c968a35f97a99396dac84e2624e67b0a16b0a15086a785e16ce7db9
- languageName: node
- linkType: hard
-
"is-regex@npm:^1.1.4":
version: 1.2.0
resolution: "is-regex@npm:1.2.0"
@@ -13622,7 +13306,7 @@ __metadata:
languageName: node
linkType: hard
-"is-set@npm:^2.0.3":
+"is-set@npm:^2.0.2, is-set@npm:^2.0.3":
version: 2.0.3
resolution: "is-set@npm:2.0.3"
checksum: 10c0/f73732e13f099b2dc879c2a12341cfc22ccaca8dd504e6edae26484bd5707a35d503fba5b4daad530a9b088ced1ae6c9d8200fd92e09b428fe14ea79ce8080b7
@@ -13691,702 +13375,177 @@ __metadata:
languageName: node
linkType: hard
-"is-unicode-supported@npm:^0.1.0":
- version: 0.1.0
- resolution: "is-unicode-supported@npm:0.1.0"
- checksum: 10c0/00cbe3455c3756be68d2542c416cab888aebd5012781d6819749fefb15162ff23e38501fe681b3d751c73e8ff561ac09a5293eba6f58fdf0178462ce6dcb3453
- languageName: node
- linkType: hard
-
-"is-unicode-supported@npm:^2.0.0":
- version: 2.1.0
- resolution: "is-unicode-supported@npm:2.1.0"
- checksum: 10c0/a0f53e9a7c1fdbcf2d2ef6e40d4736fdffff1c9f8944c75e15425118ff3610172c87bf7bc6c34d3903b04be59790bb2212ddbe21ee65b5a97030fc50370545a5
- languageName: node
- linkType: hard
-
-"is-upper-case@npm:^1.1.0":
- version: 1.1.2
- resolution: "is-upper-case@npm:1.1.2"
- dependencies:
- upper-case: "npm:^1.1.0"
- checksum: 10c0/81b8defdee0e0de7310446ac717422c586c4d013c2a517c5fcf8b119349aa2798be56fa213169b0de3936cb00e796a383683c2504d221596ae09a0eb282a5b25
- languageName: node
- linkType: hard
-
-"is-upper-case@npm:^2.0.2":
- version: 2.0.2
- resolution: "is-upper-case@npm:2.0.2"
- dependencies:
- tslib: "npm:^2.0.3"
- checksum: 10c0/2236f416484a2643d55a07cc95443cecf96cbc5fb0de7f24c506a8bc5cc4c4de885ab56c5ec946eadd95b3b7960bff7ed51cc88511fa8e8a9d92f2f8969622d9
- languageName: node
- linkType: hard
-
-"is-weakmap@npm:^2.0.2":
- version: 2.0.2
- resolution: "is-weakmap@npm:2.0.2"
- checksum: 10c0/443c35bb86d5e6cc5929cd9c75a4024bb0fff9586ed50b092f94e700b89c43a33b186b76dbc6d54f3d3d09ece689ab38dcdc1af6a482cbe79c0f2da0a17f1299
- languageName: node
- linkType: hard
-
-"is-weakref@npm:^1.0.2":
- version: 1.0.2
- resolution: "is-weakref@npm:1.0.2"
- dependencies:
- call-bind: "npm:^1.0.2"
- checksum: 10c0/1545c5d172cb690c392f2136c23eec07d8d78a7f57d0e41f10078aa4f5daf5d7f57b6513a67514ab4f073275ad00c9822fc8935e00229d0a2089e1c02685d4b1
- languageName: node
- linkType: hard
-
-"is-weakset@npm:^2.0.3":
- version: 2.0.3
- resolution: "is-weakset@npm:2.0.3"
- dependencies:
- call-bind: "npm:^1.0.7"
- get-intrinsic: "npm:^1.2.4"
- checksum: 10c0/8ad6141b6a400e7ce7c7442a13928c676d07b1f315ab77d9912920bf5f4170622f43126f111615788f26c3b1871158a6797c862233124507db0bcc33a9537d1a
- languageName: node
- linkType: hard
-
-"is-what@npm:^3.14.1":
- version: 3.14.1
- resolution: "is-what@npm:3.14.1"
- checksum: 10c0/4b770b85454c877b6929a84fd47c318e1f8c2ff70fd72fd625bc3fde8e0c18a6e57345b6e7aa1ee9fbd1c608d27cfe885df473036c5c2e40cd2187250804a2c7
- languageName: node
- linkType: hard
-
-"is-windows@npm:^1.0.1":
- version: 1.0.2
- resolution: "is-windows@npm:1.0.2"
- checksum: 10c0/b32f418ab3385604a66f1b7a3ce39d25e8881dee0bd30816dc8344ef6ff9df473a732bcc1ec4e84fe99b2f229ae474f7133e8e93f9241686cfcf7eebe53ba7a5
- languageName: node
- linkType: hard
-
-"is-wsl@npm:^3.1.0":
- version: 3.1.0
- resolution: "is-wsl@npm:3.1.0"
- dependencies:
- is-inside-container: "npm:^1.0.0"
- checksum: 10c0/d3317c11995690a32c362100225e22ba793678fe8732660c6de511ae71a0ff05b06980cf21f98a6bf40d7be0e9e9506f859abe00a1118287d63e53d0a3d06947
- languageName: node
- linkType: hard
-
-"isarray@npm:^2.0.5":
- version: 2.0.5
- resolution: "isarray@npm:2.0.5"
- checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd
- languageName: node
- linkType: hard
-
-"isarray@npm:~1.0.0":
- version: 1.0.0
- resolution: "isarray@npm:1.0.0"
- checksum: 10c0/18b5be6669be53425f0b84098732670ed4e727e3af33bc7f948aac01782110eb9a18b3b329c5323bcdd3acdaae547ee077d3951317e7f133bff7105264b3003d
- languageName: node
- linkType: hard
-
-"isexe@npm:^2.0.0":
- version: 2.0.0
- resolution: "isexe@npm:2.0.0"
- checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d
- languageName: node
- linkType: hard
-
-"isexe@npm:^3.1.1":
- version: 3.1.1
- resolution: "isexe@npm:3.1.1"
- checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7
- languageName: node
- linkType: hard
-
-"isomorphic-ws@npm:^5.0.0":
- version: 5.0.0
- resolution: "isomorphic-ws@npm:5.0.0"
- peerDependencies:
- ws: "*"
- checksum: 10c0/a058ac8b5e6efe9e46252cb0bc67fd325005d7216451d1a51238bc62d7da8486f828ef017df54ddf742e0fffcbe4b1bcc2a66cc115b027ed0180334cd18df252
- languageName: node
- linkType: hard
-
-"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0":
- version: 3.2.2
- resolution: "istanbul-lib-coverage@npm:3.2.2"
- checksum: 10c0/6c7ff2106769e5f592ded1fb418f9f73b4411fd5a084387a5410538332b6567cd1763ff6b6cadca9b9eb2c443cce2f7ea7d7f1b8d315f9ce58539793b1e0922b
- languageName: node
- linkType: hard
-
-"istanbul-lib-instrument@npm:^5.0.4":
- version: 5.2.1
- resolution: "istanbul-lib-instrument@npm:5.2.1"
- dependencies:
- "@babel/core": "npm:^7.12.3"
- "@babel/parser": "npm:^7.14.7"
- "@istanbuljs/schema": "npm:^0.1.2"
- istanbul-lib-coverage: "npm:^3.2.0"
- semver: "npm:^6.3.0"
- checksum: 10c0/8a1bdf3e377dcc0d33ec32fe2b6ecacdb1e4358fd0eb923d4326bb11c67622c0ceb99600a680f3dad5d29c66fc1991306081e339b4d43d0b8a2ab2e1d910a6ee
- languageName: node
- linkType: hard
-
-"istanbul-lib-instrument@npm:^6.0.0":
- version: 6.0.3
- resolution: "istanbul-lib-instrument@npm:6.0.3"
- dependencies:
- "@babel/core": "npm:^7.23.9"
- "@babel/parser": "npm:^7.23.9"
- "@istanbuljs/schema": "npm:^0.1.3"
- istanbul-lib-coverage: "npm:^3.2.0"
- semver: "npm:^7.5.4"
- checksum: 10c0/a1894e060dd2a3b9f046ffdc87b44c00a35516f5e6b7baf4910369acca79e506fc5323a816f811ae23d82334b38e3ddeb8b3b331bd2c860540793b59a8689128
- languageName: node
- linkType: hard
-
-"istanbul-lib-report@npm:^3.0.0":
- version: 3.0.1
- resolution: "istanbul-lib-report@npm:3.0.1"
- dependencies:
- istanbul-lib-coverage: "npm:^3.0.0"
- make-dir: "npm:^4.0.0"
- supports-color: "npm:^7.1.0"
- checksum: 10c0/84323afb14392de8b6a5714bd7e9af845cfbd56cfe71ed276cda2f5f1201aea673c7111901227ee33e68e4364e288d73861eb2ed48f6679d1e69a43b6d9b3ba7
- languageName: node
- linkType: hard
-
-"istanbul-lib-source-maps@npm:^4.0.0":
- version: 4.0.1
- resolution: "istanbul-lib-source-maps@npm:4.0.1"
- dependencies:
- debug: "npm:^4.1.1"
- istanbul-lib-coverage: "npm:^3.0.0"
- source-map: "npm:^0.6.1"
- checksum: 10c0/19e4cc405016f2c906dff271a76715b3e881fa9faeb3f09a86cb99b8512b3a5ed19cadfe0b54c17ca0e54c1142c9c6de9330d65506e35873994e06634eebeb66
- languageName: node
- linkType: hard
-
-"istanbul-reports@npm:^3.1.3":
- version: 3.1.7
- resolution: "istanbul-reports@npm:3.1.7"
- dependencies:
- html-escaper: "npm:^2.0.0"
- istanbul-lib-report: "npm:^3.0.0"
- checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51
- languageName: node
- linkType: hard
-
-"iterator.prototype@npm:^1.1.3":
- version: 1.1.3
- resolution: "iterator.prototype@npm:1.1.3"
- dependencies:
- define-properties: "npm:^1.2.1"
- get-intrinsic: "npm:^1.2.1"
- has-symbols: "npm:^1.0.3"
- reflect.getprototypeof: "npm:^1.0.4"
- set-function-name: "npm:^2.0.1"
- checksum: 10c0/68b0320c14291fbb3d8ed5a17e255d3127e7971bec19108076667e79c9ff4c7d69f99de4b0b3075c789c3f318366d7a0a35bb086eae0f2cf832dd58465b2f9e6
- languageName: node
- linkType: hard
-
-"jackspeak@npm:^3.1.2":
- version: 3.4.3
- resolution: "jackspeak@npm:3.4.3"
- dependencies:
- "@isaacs/cliui": "npm:^8.0.2"
- "@pkgjs/parseargs": "npm:^0.11.0"
- dependenciesMeta:
- "@pkgjs/parseargs":
- optional: true
- checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9
- languageName: node
- linkType: hard
-
-"jackspeak@npm:^4.0.1":
- version: 4.0.2
- resolution: "jackspeak@npm:4.0.2"
- dependencies:
- "@isaacs/cliui": "npm:^8.0.2"
- checksum: 10c0/b26039d11c0163a95b1e58851b9ac453cce64ad6d1eb98a00b303ad5eeb761b29d33c9419d1e16c016d3f7151c8edf7df223e6cf93a1907655fd95d6ce85c0de
- languageName: node
- linkType: hard
-
-"jake@npm:^10.8.5":
- version: 10.9.2
- resolution: "jake@npm:10.9.2"
- dependencies:
- async: "npm:^3.2.3"
- chalk: "npm:^4.0.2"
- filelist: "npm:^1.0.4"
- minimatch: "npm:^3.1.2"
- bin:
- jake: bin/cli.js
- checksum: 10c0/c4597b5ed9b6a908252feab296485a4f87cba9e26d6c20e0ca144fb69e0c40203d34a2efddb33b3d297b8bd59605e6c1f44f6221ca1e10e69175ecbf3ff5fe31
- languageName: node
- linkType: hard
-
-"javascript-natural-sort@npm:^0.7.1":
- version: 0.7.1
- resolution: "javascript-natural-sort@npm:0.7.1"
- checksum: 10c0/340f8ffc5d30fb516e06dc540e8fa9e0b93c865cf49d791fed3eac3bdc5fc71f0066fc81d44ec1433edc87caecaf9f13eec4a1fce8c5beafc709a71eaedae6fe
- languageName: node
- linkType: hard
-
-"jest-changed-files@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-changed-files@npm:29.7.0"
- dependencies:
- execa: "npm:^5.0.0"
- jest-util: "npm:^29.7.0"
- p-limit: "npm:^3.1.0"
- checksum: 10c0/e071384d9e2f6bb462231ac53f29bff86f0e12394c1b49ccafbad225ce2ab7da226279a8a94f421949920bef9be7ef574fd86aee22e8adfa149be73554ab828b
- languageName: node
- linkType: hard
-
-"jest-circus@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-circus@npm:29.7.0"
- dependencies:
- "@jest/environment": "npm:^29.7.0"
- "@jest/expect": "npm:^29.7.0"
- "@jest/test-result": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- chalk: "npm:^4.0.0"
- co: "npm:^4.6.0"
- dedent: "npm:^1.0.0"
- is-generator-fn: "npm:^2.0.0"
- jest-each: "npm:^29.7.0"
- jest-matcher-utils: "npm:^29.7.0"
- jest-message-util: "npm:^29.7.0"
- jest-runtime: "npm:^29.7.0"
- jest-snapshot: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- p-limit: "npm:^3.1.0"
- pretty-format: "npm:^29.7.0"
- pure-rand: "npm:^6.0.0"
- slash: "npm:^3.0.0"
- stack-utils: "npm:^2.0.3"
- checksum: 10c0/8d15344cf7a9f14e926f0deed64ed190c7a4fa1ed1acfcd81e4cc094d3cc5bf7902ebb7b874edc98ada4185688f90c91e1747e0dfd7ac12463b097968ae74b5e
- languageName: node
- linkType: hard
-
-"jest-cli@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-cli@npm:29.7.0"
- dependencies:
- "@jest/core": "npm:^29.7.0"
- "@jest/test-result": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- chalk: "npm:^4.0.0"
- create-jest: "npm:^29.7.0"
- exit: "npm:^0.1.2"
- import-local: "npm:^3.0.2"
- jest-config: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- jest-validate: "npm:^29.7.0"
- yargs: "npm:^17.3.1"
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- bin:
- jest: bin/jest.js
- checksum: 10c0/a658fd55050d4075d65c1066364595962ead7661711495cfa1dfeecf3d6d0a8ffec532f3dbd8afbb3e172dd5fd2fb2e813c5e10256e7cf2fea766314942fb43a
- languageName: node
- linkType: hard
-
-"jest-config@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-config@npm:29.7.0"
- dependencies:
- "@babel/core": "npm:^7.11.6"
- "@jest/test-sequencer": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- babel-jest: "npm:^29.7.0"
- chalk: "npm:^4.0.0"
- ci-info: "npm:^3.2.0"
- deepmerge: "npm:^4.2.2"
- glob: "npm:^7.1.3"
- graceful-fs: "npm:^4.2.9"
- jest-circus: "npm:^29.7.0"
- jest-environment-node: "npm:^29.7.0"
- jest-get-type: "npm:^29.6.3"
- jest-regex-util: "npm:^29.6.3"
- jest-resolve: "npm:^29.7.0"
- jest-runner: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- jest-validate: "npm:^29.7.0"
- micromatch: "npm:^4.0.4"
- parse-json: "npm:^5.2.0"
- pretty-format: "npm:^29.7.0"
- slash: "npm:^3.0.0"
- strip-json-comments: "npm:^3.1.1"
- peerDependencies:
- "@types/node": "*"
- ts-node: ">=9.0.0"
- peerDependenciesMeta:
- "@types/node":
- optional: true
- ts-node:
- optional: true
- checksum: 10c0/bab23c2eda1fff06e0d104b00d6adfb1d1aabb7128441899c9bff2247bd26710b050a5364281ce8d52b46b499153bf7e3ee88b19831a8f3451f1477a0246a0f1
- languageName: node
- linkType: hard
-
-"jest-diff@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-diff@npm:29.7.0"
- dependencies:
- chalk: "npm:^4.0.0"
- diff-sequences: "npm:^29.6.3"
- jest-get-type: "npm:^29.6.3"
- pretty-format: "npm:^29.7.0"
- checksum: 10c0/89a4a7f182590f56f526443dde69acefb1f2f0c9e59253c61d319569856c4931eae66b8a3790c443f529267a0ddba5ba80431c585deed81827032b2b2a1fc999
- languageName: node
- linkType: hard
-
-"jest-docblock@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-docblock@npm:29.7.0"
- dependencies:
- detect-newline: "npm:^3.0.0"
- checksum: 10c0/d932a8272345cf6b6142bb70a2bb63e0856cc0093f082821577ea5bdf4643916a98744dfc992189d2b1417c38a11fa42466f6111526bc1fb81366f56410f3be9
+"is-unicode-supported@npm:^0.1.0":
+ version: 0.1.0
+ resolution: "is-unicode-supported@npm:0.1.0"
+ checksum: 10c0/00cbe3455c3756be68d2542c416cab888aebd5012781d6819749fefb15162ff23e38501fe681b3d751c73e8ff561ac09a5293eba6f58fdf0178462ce6dcb3453
languageName: node
linkType: hard
-"jest-each@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-each@npm:29.7.0"
- dependencies:
- "@jest/types": "npm:^29.6.3"
- chalk: "npm:^4.0.0"
- jest-get-type: "npm:^29.6.3"
- jest-util: "npm:^29.7.0"
- pretty-format: "npm:^29.7.0"
- checksum: 10c0/f7f9a90ebee80cc688e825feceb2613627826ac41ea76a366fa58e669c3b2403d364c7c0a74d862d469b103c843154f8456d3b1c02b487509a12afa8b59edbb4
+"is-unicode-supported@npm:^2.0.0":
+ version: 2.1.0
+ resolution: "is-unicode-supported@npm:2.1.0"
+ checksum: 10c0/a0f53e9a7c1fdbcf2d2ef6e40d4736fdffff1c9f8944c75e15425118ff3610172c87bf7bc6c34d3903b04be59790bb2212ddbe21ee65b5a97030fc50370545a5
languageName: node
linkType: hard
-"jest-environment-jsdom@npm:^29":
- version: 29.7.0
- resolution: "jest-environment-jsdom@npm:29.7.0"
+"is-upper-case@npm:^1.1.0":
+ version: 1.1.2
+ resolution: "is-upper-case@npm:1.1.2"
dependencies:
- "@jest/environment": "npm:^29.7.0"
- "@jest/fake-timers": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/jsdom": "npm:^20.0.0"
- "@types/node": "npm:*"
- jest-mock: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- jsdom: "npm:^20.0.0"
- peerDependencies:
- canvas: ^2.5.0
- peerDependenciesMeta:
- canvas:
- optional: true
- checksum: 10c0/139b94e2c8ec1bb5a46ce17df5211da65ce867354b3fd4e00fa6a0d1da95902df4cf7881273fc6ea937e5c325d39d6773f0d41b6c469363334de9d489d2c321f
+ upper-case: "npm:^1.1.0"
+ checksum: 10c0/81b8defdee0e0de7310446ac717422c586c4d013c2a517c5fcf8b119349aa2798be56fa213169b0de3936cb00e796a383683c2504d221596ae09a0eb282a5b25
languageName: node
linkType: hard
-"jest-environment-node@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-environment-node@npm:29.7.0"
+"is-upper-case@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "is-upper-case@npm:2.0.2"
dependencies:
- "@jest/environment": "npm:^29.7.0"
- "@jest/fake-timers": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- jest-mock: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- checksum: 10c0/61f04fec077f8b1b5c1a633e3612fc0c9aa79a0ab7b05600683428f1e01a4d35346c474bde6f439f9fcc1a4aa9a2861ff852d079a43ab64b02105d1004b2592b
+ tslib: "npm:^2.0.3"
+ checksum: 10c0/2236f416484a2643d55a07cc95443cecf96cbc5fb0de7f24c506a8bc5cc4c4de885ab56c5ec946eadd95b3b7960bff7ed51cc88511fa8e8a9d92f2f8969622d9
languageName: node
linkType: hard
-"jest-get-type@npm:^29.6.3":
- version: 29.6.3
- resolution: "jest-get-type@npm:29.6.3"
- checksum: 10c0/552e7a97a983d3c2d4e412a44eb7de0430ff773dd99f7500962c268d6dfbfa431d7d08f919c9d960530e5f7f78eb47f267ad9b318265e5092b3ff9ede0db7c2b
+"is-weakmap@npm:^2.0.2":
+ version: 2.0.2
+ resolution: "is-weakmap@npm:2.0.2"
+ checksum: 10c0/443c35bb86d5e6cc5929cd9c75a4024bb0fff9586ed50b092f94e700b89c43a33b186b76dbc6d54f3d3d09ece689ab38dcdc1af6a482cbe79c0f2da0a17f1299
languageName: node
linkType: hard
-"jest-haste-map@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-haste-map@npm:29.7.0"
+"is-weakref@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "is-weakref@npm:1.0.2"
dependencies:
- "@jest/types": "npm:^29.6.3"
- "@types/graceful-fs": "npm:^4.1.3"
- "@types/node": "npm:*"
- anymatch: "npm:^3.0.3"
- fb-watchman: "npm:^2.0.0"
- fsevents: "npm:^2.3.2"
- graceful-fs: "npm:^4.2.9"
- jest-regex-util: "npm:^29.6.3"
- jest-util: "npm:^29.7.0"
- jest-worker: "npm:^29.7.0"
- micromatch: "npm:^4.0.4"
- walker: "npm:^1.0.8"
- dependenciesMeta:
- fsevents:
- optional: true
- checksum: 10c0/2683a8f29793c75a4728787662972fedd9267704c8f7ef9d84f2beed9a977f1cf5e998c07b6f36ba5603f53cb010c911fe8cd0ac9886e073fe28ca66beefd30c
+ call-bind: "npm:^1.0.2"
+ checksum: 10c0/1545c5d172cb690c392f2136c23eec07d8d78a7f57d0e41f10078aa4f5daf5d7f57b6513a67514ab4f073275ad00c9822fc8935e00229d0a2089e1c02685d4b1
languageName: node
linkType: hard
-"jest-leak-detector@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-leak-detector@npm:29.7.0"
+"is-weakset@npm:^2.0.3":
+ version: 2.0.3
+ resolution: "is-weakset@npm:2.0.3"
dependencies:
- jest-get-type: "npm:^29.6.3"
- pretty-format: "npm:^29.7.0"
- checksum: 10c0/71bb9f77fc489acb842a5c7be030f2b9acb18574dc9fb98b3100fc57d422b1abc55f08040884bd6e6dbf455047a62f7eaff12aa4058f7cbdc11558718ca6a395
+ call-bind: "npm:^1.0.7"
+ get-intrinsic: "npm:^1.2.4"
+ checksum: 10c0/8ad6141b6a400e7ce7c7442a13928c676d07b1f315ab77d9912920bf5f4170622f43126f111615788f26c3b1871158a6797c862233124507db0bcc33a9537d1a
languageName: node
linkType: hard
-"jest-matcher-utils@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-matcher-utils@npm:29.7.0"
- dependencies:
- chalk: "npm:^4.0.0"
- jest-diff: "npm:^29.7.0"
- jest-get-type: "npm:^29.6.3"
- pretty-format: "npm:^29.7.0"
- checksum: 10c0/0d0e70b28fa5c7d4dce701dc1f46ae0922102aadc24ed45d594dd9b7ae0a8a6ef8b216718d1ab79e451291217e05d4d49a82666e1a3cc2b428b75cd9c933244e
+"is-what@npm:^3.14.1":
+ version: 3.14.1
+ resolution: "is-what@npm:3.14.1"
+ checksum: 10c0/4b770b85454c877b6929a84fd47c318e1f8c2ff70fd72fd625bc3fde8e0c18a6e57345b6e7aa1ee9fbd1c608d27cfe885df473036c5c2e40cd2187250804a2c7
languageName: node
linkType: hard
-"jest-message-util@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-message-util@npm:29.7.0"
- dependencies:
- "@babel/code-frame": "npm:^7.12.13"
- "@jest/types": "npm:^29.6.3"
- "@types/stack-utils": "npm:^2.0.0"
- chalk: "npm:^4.0.0"
- graceful-fs: "npm:^4.2.9"
- micromatch: "npm:^4.0.4"
- pretty-format: "npm:^29.7.0"
- slash: "npm:^3.0.0"
- stack-utils: "npm:^2.0.3"
- checksum: 10c0/850ae35477f59f3e6f27efac5215f706296e2104af39232bb14e5403e067992afb5c015e87a9243ec4d9df38525ef1ca663af9f2f4766aa116f127247008bd22
+"is-windows@npm:^1.0.1":
+ version: 1.0.2
+ resolution: "is-windows@npm:1.0.2"
+ checksum: 10c0/b32f418ab3385604a66f1b7a3ce39d25e8881dee0bd30816dc8344ef6ff9df473a732bcc1ec4e84fe99b2f229ae474f7133e8e93f9241686cfcf7eebe53ba7a5
languageName: node
linkType: hard
-"jest-mock@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-mock@npm:29.7.0"
+"is-wsl@npm:^3.1.0":
+ version: 3.1.0
+ resolution: "is-wsl@npm:3.1.0"
dependencies:
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- jest-util: "npm:^29.7.0"
- checksum: 10c0/7b9f8349ee87695a309fe15c46a74ab04c853369e5c40952d68061d9dc3159a0f0ed73e215f81b07ee97a9faaf10aebe5877a9d6255068a0977eae6a9ff1d5ac
- languageName: node
- linkType: hard
-
-"jest-pnp-resolver@npm:^1.2.2":
- version: 1.2.3
- resolution: "jest-pnp-resolver@npm:1.2.3"
- peerDependencies:
- jest-resolve: "*"
- peerDependenciesMeta:
- jest-resolve:
- optional: true
- checksum: 10c0/86eec0c78449a2de733a6d3e316d49461af6a858070e113c97f75fb742a48c2396ea94150cbca44159ffd4a959f743a47a8b37a792ef6fdad2cf0a5cba973fac
+ is-inside-container: "npm:^1.0.0"
+ checksum: 10c0/d3317c11995690a32c362100225e22ba793678fe8732660c6de511ae71a0ff05b06980cf21f98a6bf40d7be0e9e9506f859abe00a1118287d63e53d0a3d06947
languageName: node
linkType: hard
-"jest-regex-util@npm:^29.6.3":
- version: 29.6.3
- resolution: "jest-regex-util@npm:29.6.3"
- checksum: 10c0/4e33fb16c4f42111159cafe26397118dcfc4cf08bc178a67149fb05f45546a91928b820894572679d62559839d0992e21080a1527faad65daaae8743a5705a3b
+"isarray@npm:^2.0.5":
+ version: 2.0.5
+ resolution: "isarray@npm:2.0.5"
+ checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd
languageName: node
linkType: hard
-"jest-resolve-dependencies@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-resolve-dependencies@npm:29.7.0"
- dependencies:
- jest-regex-util: "npm:^29.6.3"
- jest-snapshot: "npm:^29.7.0"
- checksum: 10c0/b6e9ad8ae5b6049474118ea6441dfddd385b6d1fc471db0136f7c8fbcfe97137a9665e4f837a9f49f15a29a1deb95a14439b7aec812f3f99d08f228464930f0d
+"isarray@npm:~1.0.0":
+ version: 1.0.0
+ resolution: "isarray@npm:1.0.0"
+ checksum: 10c0/18b5be6669be53425f0b84098732670ed4e727e3af33bc7f948aac01782110eb9a18b3b329c5323bcdd3acdaae547ee077d3951317e7f133bff7105264b3003d
languageName: node
linkType: hard
-"jest-resolve@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-resolve@npm:29.7.0"
- dependencies:
- chalk: "npm:^4.0.0"
- graceful-fs: "npm:^4.2.9"
- jest-haste-map: "npm:^29.7.0"
- jest-pnp-resolver: "npm:^1.2.2"
- jest-util: "npm:^29.7.0"
- jest-validate: "npm:^29.7.0"
- resolve: "npm:^1.20.0"
- resolve.exports: "npm:^2.0.0"
- slash: "npm:^3.0.0"
- checksum: 10c0/59da5c9c5b50563e959a45e09e2eace783d7f9ac0b5dcc6375dea4c0db938d2ebda97124c8161310082760e8ebbeff9f6b177c15ca2f57fb424f637a5d2adb47
+"isexe@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "isexe@npm:2.0.0"
+ checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d
languageName: node
linkType: hard
-"jest-runner@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-runner@npm:29.7.0"
- dependencies:
- "@jest/console": "npm:^29.7.0"
- "@jest/environment": "npm:^29.7.0"
- "@jest/test-result": "npm:^29.7.0"
- "@jest/transform": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- chalk: "npm:^4.0.0"
- emittery: "npm:^0.13.1"
- graceful-fs: "npm:^4.2.9"
- jest-docblock: "npm:^29.7.0"
- jest-environment-node: "npm:^29.7.0"
- jest-haste-map: "npm:^29.7.0"
- jest-leak-detector: "npm:^29.7.0"
- jest-message-util: "npm:^29.7.0"
- jest-resolve: "npm:^29.7.0"
- jest-runtime: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- jest-watcher: "npm:^29.7.0"
- jest-worker: "npm:^29.7.0"
- p-limit: "npm:^3.1.0"
- source-map-support: "npm:0.5.13"
- checksum: 10c0/2194b4531068d939f14c8d3274fe5938b77fa73126aedf9c09ec9dec57d13f22c72a3b5af01ac04f5c1cf2e28d0ac0b4a54212a61b05f10b5d6b47f2a1097bb4
- languageName: node
- linkType: hard
-
-"jest-runtime@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-runtime@npm:29.7.0"
- dependencies:
- "@jest/environment": "npm:^29.7.0"
- "@jest/fake-timers": "npm:^29.7.0"
- "@jest/globals": "npm:^29.7.0"
- "@jest/source-map": "npm:^29.6.3"
- "@jest/test-result": "npm:^29.7.0"
- "@jest/transform": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- chalk: "npm:^4.0.0"
- cjs-module-lexer: "npm:^1.0.0"
- collect-v8-coverage: "npm:^1.0.0"
- glob: "npm:^7.1.3"
- graceful-fs: "npm:^4.2.9"
- jest-haste-map: "npm:^29.7.0"
- jest-message-util: "npm:^29.7.0"
- jest-mock: "npm:^29.7.0"
- jest-regex-util: "npm:^29.6.3"
- jest-resolve: "npm:^29.7.0"
- jest-snapshot: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- slash: "npm:^3.0.0"
- strip-bom: "npm:^4.0.0"
- checksum: 10c0/7cd89a1deda0bda7d0941835434e44f9d6b7bd50b5c5d9b0fc9a6c990b2d4d2cab59685ab3cb2850ed4cc37059f6de903af5a50565d7f7f1192a77d3fd6dd2a6
+"isexe@npm:^3.1.1":
+ version: 3.1.1
+ resolution: "isexe@npm:3.1.1"
+ checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7
languageName: node
linkType: hard
-"jest-snapshot@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-snapshot@npm:29.7.0"
- dependencies:
- "@babel/core": "npm:^7.11.6"
- "@babel/generator": "npm:^7.7.2"
- "@babel/plugin-syntax-jsx": "npm:^7.7.2"
- "@babel/plugin-syntax-typescript": "npm:^7.7.2"
- "@babel/types": "npm:^7.3.3"
- "@jest/expect-utils": "npm:^29.7.0"
- "@jest/transform": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- babel-preset-current-node-syntax: "npm:^1.0.0"
- chalk: "npm:^4.0.0"
- expect: "npm:^29.7.0"
- graceful-fs: "npm:^4.2.9"
- jest-diff: "npm:^29.7.0"
- jest-get-type: "npm:^29.6.3"
- jest-matcher-utils: "npm:^29.7.0"
- jest-message-util: "npm:^29.7.0"
- jest-util: "npm:^29.7.0"
- natural-compare: "npm:^1.4.0"
- pretty-format: "npm:^29.7.0"
- semver: "npm:^7.5.3"
- checksum: 10c0/6e9003c94ec58172b4a62864a91c0146513207bedf4e0a06e1e2ac70a4484088a2683e3a0538d8ea913bcfd53dc54a9b98a98cdfa562e7fe1d1339aeae1da570
+"isomorphic-ws@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "isomorphic-ws@npm:5.0.0"
+ peerDependencies:
+ ws: "*"
+ checksum: 10c0/a058ac8b5e6efe9e46252cb0bc67fd325005d7216451d1a51238bc62d7da8486f828ef017df54ddf742e0fffcbe4b1bcc2a66cc115b027ed0180334cd18df252
languageName: node
linkType: hard
-"jest-util@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-util@npm:29.7.0"
+"iterator.prototype@npm:^1.1.3":
+ version: 1.1.3
+ resolution: "iterator.prototype@npm:1.1.3"
dependencies:
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- chalk: "npm:^4.0.0"
- ci-info: "npm:^3.2.0"
- graceful-fs: "npm:^4.2.9"
- picomatch: "npm:^2.2.3"
- checksum: 10c0/bc55a8f49fdbb8f51baf31d2a4f312fb66c9db1483b82f602c9c990e659cdd7ec529c8e916d5a89452ecbcfae4949b21b40a7a59d4ffc0cd813a973ab08c8150
+ define-properties: "npm:^1.2.1"
+ get-intrinsic: "npm:^1.2.1"
+ has-symbols: "npm:^1.0.3"
+ reflect.getprototypeof: "npm:^1.0.4"
+ set-function-name: "npm:^2.0.1"
+ checksum: 10c0/68b0320c14291fbb3d8ed5a17e255d3127e7971bec19108076667e79c9ff4c7d69f99de4b0b3075c789c3f318366d7a0a35bb086eae0f2cf832dd58465b2f9e6
languageName: node
linkType: hard
-"jest-validate@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-validate@npm:29.7.0"
+"jackspeak@npm:^3.1.2":
+ version: 3.4.3
+ resolution: "jackspeak@npm:3.4.3"
dependencies:
- "@jest/types": "npm:^29.6.3"
- camelcase: "npm:^6.2.0"
- chalk: "npm:^4.0.0"
- jest-get-type: "npm:^29.6.3"
- leven: "npm:^3.1.0"
- pretty-format: "npm:^29.7.0"
- checksum: 10c0/a20b930480c1ed68778c739f4739dce39423131bc070cd2505ddede762a5570a256212e9c2401b7ae9ba4d7b7c0803f03c5b8f1561c62348213aba18d9dbece2
+ "@isaacs/cliui": "npm:^8.0.2"
+ "@pkgjs/parseargs": "npm:^0.11.0"
+ dependenciesMeta:
+ "@pkgjs/parseargs":
+ optional: true
+ checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9
languageName: node
linkType: hard
-"jest-watcher@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-watcher@npm:29.7.0"
+"jackspeak@npm:^4.0.1":
+ version: 4.0.2
+ resolution: "jackspeak@npm:4.0.2"
dependencies:
- "@jest/test-result": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- "@types/node": "npm:*"
- ansi-escapes: "npm:^4.2.1"
- chalk: "npm:^4.0.0"
- emittery: "npm:^0.13.1"
- jest-util: "npm:^29.7.0"
- string-length: "npm:^4.0.1"
- checksum: 10c0/ec6c75030562fc8f8c727cb8f3b94e75d831fc718785abfc196e1f2a2ebc9a2e38744a15147170039628a853d77a3b695561ce850375ede3a4ee6037a2574567
+ "@isaacs/cliui": "npm:^8.0.2"
+ checksum: 10c0/b26039d11c0163a95b1e58851b9ac453cce64ad6d1eb98a00b303ad5eeb761b29d33c9419d1e16c016d3f7151c8edf7df223e6cf93a1907655fd95d6ce85c0de
languageName: node
linkType: hard
-"jest-worker@npm:^29.7.0":
- version: 29.7.0
- resolution: "jest-worker@npm:29.7.0"
+"jake@npm:^10.8.5":
+ version: 10.9.2
+ resolution: "jake@npm:10.9.2"
dependencies:
- "@types/node": "npm:*"
- jest-util: "npm:^29.7.0"
- merge-stream: "npm:^2.0.0"
- supports-color: "npm:^8.0.0"
- checksum: 10c0/5570a3a005b16f46c131968b8a5b56d291f9bbb85ff4217e31c80bd8a02e7de799e59a54b95ca28d5c302f248b54cbffde2d177c2f0f52ffcee7504c6eabf660
+ async: "npm:^3.2.3"
+ chalk: "npm:^4.0.2"
+ filelist: "npm:^1.0.4"
+ minimatch: "npm:^3.1.2"
+ bin:
+ jake: bin/cli.js
+ checksum: 10c0/c4597b5ed9b6a908252feab296485a4f87cba9e26d6c20e0ca144fb69e0c40203d34a2efddb33b3d297b8bd59605e6c1f44f6221ca1e10e69175ecbf3ff5fe31
languageName: node
linkType: hard
-"jest@npm:^29":
- version: 29.7.0
- resolution: "jest@npm:29.7.0"
- dependencies:
- "@jest/core": "npm:^29.7.0"
- "@jest/types": "npm:^29.6.3"
- import-local: "npm:^3.0.2"
- jest-cli: "npm:^29.7.0"
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- bin:
- jest: bin/jest.js
- checksum: 10c0/f40eb8171cf147c617cc6ada49d062fbb03b4da666cb8d39cdbfb739a7d75eea4c3ca150fb072d0d273dce0c753db4d0467d54906ad0293f59c54f9db4a09d8b
+"javascript-natural-sort@npm:^0.7.1":
+ version: 0.7.1
+ resolution: "javascript-natural-sort@npm:0.7.1"
+ checksum: 10c0/340f8ffc5d30fb516e06dc540e8fa9e0b93c865cf49d791fed3eac3bdc5fc71f0066fc81d44ec1433edc87caecaf9f13eec4a1fce8c5beafc709a71eaedae6fe
languageName: node
linkType: hard
@@ -14461,45 +13620,6 @@ __metadata:
languageName: node
linkType: hard
-"jsdom@npm:^20.0.0":
- version: 20.0.3
- resolution: "jsdom@npm:20.0.3"
- dependencies:
- abab: "npm:^2.0.6"
- acorn: "npm:^8.8.1"
- acorn-globals: "npm:^7.0.0"
- cssom: "npm:^0.5.0"
- cssstyle: "npm:^2.3.0"
- data-urls: "npm:^3.0.2"
- decimal.js: "npm:^10.4.2"
- domexception: "npm:^4.0.0"
- escodegen: "npm:^2.0.0"
- form-data: "npm:^4.0.0"
- html-encoding-sniffer: "npm:^3.0.0"
- http-proxy-agent: "npm:^5.0.0"
- https-proxy-agent: "npm:^5.0.1"
- is-potential-custom-element-name: "npm:^1.0.1"
- nwsapi: "npm:^2.2.2"
- parse5: "npm:^7.1.1"
- saxes: "npm:^6.0.0"
- symbol-tree: "npm:^3.2.4"
- tough-cookie: "npm:^4.1.2"
- w3c-xmlserializer: "npm:^4.0.0"
- webidl-conversions: "npm:^7.0.0"
- whatwg-encoding: "npm:^2.0.0"
- whatwg-mimetype: "npm:^3.0.0"
- whatwg-url: "npm:^11.0.0"
- ws: "npm:^8.11.0"
- xml-name-validator: "npm:^4.0.0"
- peerDependencies:
- canvas: ^2.5.0
- peerDependenciesMeta:
- canvas:
- optional: true
- checksum: 10c0/b109073bb826a966db7828f46cb1d7371abecd30f182b143c52be5fe1ed84513bbbe995eb3d157241681fcd18331381e61e3dc004d4949f3a63bca02f6214902
- languageName: node
- linkType: hard
-
"jsesc@npm:^3.0.2, jsesc@npm:~3.0.2":
version: 3.0.2
resolution: "jsesc@npm:3.0.2"
@@ -14570,13 +13690,6 @@ __metadata:
languageName: node
linkType: hard
-"jsonc-parser@npm:^3.2.0":
- version: 3.3.1
- resolution: "jsonc-parser@npm:3.3.1"
- checksum: 10c0/269c3ae0a0e4f907a914bf334306c384aabb9929bd8c99f909275ebd5c2d3bc70b9bcd119ad794f339dec9f24b6a4ee9cd5a8ab2e6435e730ad4075388fc2ab6
- languageName: node
- linkType: hard
-
"jsonfile@npm:^6.0.1":
version: 6.1.0
resolution: "jsonfile@npm:6.1.0"
@@ -14627,13 +13740,6 @@ __metadata:
languageName: node
linkType: hard
-"kleur@npm:^3.0.3":
- version: 3.0.3
- resolution: "kleur@npm:3.0.3"
- checksum: 10c0/cd3a0b8878e7d6d3799e54340efe3591ca787d9f95f109f28129bdd2915e37807bf8918bb295ab86afb8c82196beec5a1adcaf29042ce3f2bd932b038fe3aa4b
- languageName: node
- linkType: hard
-
"koa-compose@npm:^4.1.0":
version: 4.1.0
resolution: "koa-compose@npm:4.1.0"
@@ -15097,6 +14203,13 @@ __metadata:
languageName: node
linkType: hard
+"loupe@npm:^3.1.0, loupe@npm:^3.1.3":
+ version: 3.1.3
+ resolution: "loupe@npm:3.1.3"
+ checksum: 10c0/f5dab4144254677de83a35285be1b8aba58b3861439ce4ba65875d0d5f3445a4a496daef63100ccf02b2dbc25bf58c6db84c9cb0b96d6435331e9d0a33b48541
+ languageName: node
+ linkType: hard
+
"lower-case-first@npm:^1.0.0":
version: 1.0.2
resolution: "lower-case-first@npm:1.0.2"
@@ -15172,6 +14285,15 @@ __metadata:
languageName: node
linkType: hard
+"magic-string@npm:^0.30.17":
+ version: 0.30.17
+ resolution: "magic-string@npm:0.30.17"
+ dependencies:
+ "@jridgewell/sourcemap-codec": "npm:^1.5.0"
+ checksum: 10c0/16826e415d04b88378f200fe022b53e638e3838b9e496edda6c0e086d7753a44a6ed187adc72d19f3623810589bf139af1a315541cd6a26ae0771a0193eaf7b8
+ languageName: node
+ linkType: hard
+
"make-dir@npm:^2.1.0":
version: 2.1.0
resolution: "make-dir@npm:2.1.0"
@@ -15182,15 +14304,6 @@ __metadata:
languageName: node
linkType: hard
-"make-dir@npm:^4.0.0":
- version: 4.0.0
- resolution: "make-dir@npm:4.0.0"
- dependencies:
- semver: "npm:^7.5.3"
- checksum: 10c0/69b98a6c0b8e5c4fe9acb61608a9fbcfca1756d910f51e5dbe7a9e5cfb74fca9b8a0c8a0ffdf1294a740826c1ab4871d5bf3f62f72a3049e5eac6541ddffed68
- languageName: node
- linkType: hard
-
"make-fetch-happen@npm:^14.0.3":
version: 14.0.3
resolution: "make-fetch-happen@npm:14.0.3"
@@ -15210,15 +14323,6 @@ __metadata:
languageName: node
linkType: hard
-"makeerror@npm:1.0.12":
- version: 1.0.12
- resolution: "makeerror@npm:1.0.12"
- dependencies:
- tmpl: "npm:1.0.5"
- checksum: 10c0/b0e6e599780ce6bab49cc413eba822f7d1f0dfebd1c103eaa3785c59e43e22c59018323cf9e1708f0ef5329e94a745d163fcbb6bff8e4c6742f9be9e86f3500c
- languageName: node
- linkType: hard
-
"map-cache@npm:^0.2.0":
version: 0.2.2
resolution: "map-cache@npm:0.2.2"
@@ -16410,13 +15514,6 @@ __metadata:
languageName: node
linkType: hard
-"normalize-path@npm:^3.0.0":
- version: 3.0.0
- resolution: "normalize-path@npm:3.0.0"
- checksum: 10c0/e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046
- languageName: node
- linkType: hard
-
"npm-run-path@npm:^4.0.1":
version: 4.0.1
resolution: "npm-run-path@npm:4.0.1"
@@ -16452,13 +15549,6 @@ __metadata:
languageName: node
linkType: hard
-"nwsapi@npm:^2.2.2":
- version: 2.2.16
- resolution: "nwsapi@npm:2.2.16"
- checksum: 10c0/0aa0637f4d51043d0183d994e08336bae996b03b42984381bf09ebdf3ff4909c018eda6b2a8aba0a08f3ea8303db8a0dad0608b38dc0bff15fd87017286ae21a
- languageName: node
- linkType: hard
-
"object-assign@npm:^4.1.0, object-assign@npm:^4.1.1":
version: 4.1.1
resolution: "object-assign@npm:4.1.1"
@@ -16473,6 +15563,16 @@ __metadata:
languageName: node
linkType: hard
+"object-is@npm:^1.1.5":
+ version: 1.1.6
+ resolution: "object-is@npm:1.1.6"
+ dependencies:
+ call-bind: "npm:^1.0.7"
+ define-properties: "npm:^1.2.1"
+ checksum: 10c0/506af444c4dce7f8e31f34fc549e2fb8152d6b9c4a30c6e62852badd7f520b579c679af433e7a072f9d78eb7808d230dc12e1cf58da9154dfbf8813099ea0fe0
+ languageName: node
+ linkType: hard
+
"object-keys@npm:^1.1.1":
version: 1.1.1
resolution: "object-keys@npm:1.1.1"
@@ -16617,7 +15717,7 @@ __metadata:
languageName: node
linkType: hard
-"p-limit@npm:3.1.0, p-limit@npm:^3.0.2, p-limit@npm:^3.1.0":
+"p-limit@npm:3.1.0, p-limit@npm:^3.0.2":
version: 3.1.0
resolution: "p-limit@npm:3.1.0"
dependencies:
@@ -16764,7 +15864,7 @@ __metadata:
languageName: node
linkType: hard
-"parse5@npm:^7.0.0, parse5@npm:^7.1.1":
+"parse5@npm:^7.0.0":
version: 7.2.1
resolution: "parse5@npm:7.2.1"
dependencies:
@@ -16928,6 +16028,20 @@ __metadata:
languageName: node
linkType: hard
+"pathe@npm:^2.0.3":
+ version: 2.0.3
+ resolution: "pathe@npm:2.0.3"
+ checksum: 10c0/c118dc5a8b5c4166011b2b70608762e260085180bb9e33e80a50dcdb1e78c010b1624f4280c492c92b05fc276715a4c357d1f9edc570f8f1b3d90b6839ebaca1
+ languageName: node
+ linkType: hard
+
+"pathval@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "pathval@npm:2.0.0"
+ checksum: 10c0/602e4ee347fba8a599115af2ccd8179836a63c925c23e04bd056d0674a64b39e3a081b643cc7bc0b84390517df2d800a46fcc5598d42c155fe4977095c2f77c5
+ languageName: node
+ linkType: hard
+
"picocolors@npm:^1, picocolors@npm:^1.0.0, picocolors@npm:^1.1.0, picocolors@npm:^1.1.1":
version: 1.1.1
resolution: "picocolors@npm:1.1.1"
@@ -16935,7 +16049,7 @@ __metadata:
languageName: node
linkType: hard
-"picomatch@npm:^2.0.4, picomatch@npm:^2.2.2, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1":
+"picomatch@npm:^2.2.2, picomatch@npm:^2.3.1":
version: 2.3.1
resolution: "picomatch@npm:2.3.1"
checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be
@@ -16956,22 +16070,6 @@ __metadata:
languageName: node
linkType: hard
-"pirates@npm:^4.0.4":
- version: 4.0.6
- resolution: "pirates@npm:4.0.6"
- checksum: 10c0/00d5fa51f8dded94d7429700fb91a0c1ead00ae2c7fd27089f0c5b63e6eca36197fe46384631872690a66f390c5e27198e99006ab77ae472692ab9c2ca903f36
- languageName: node
- linkType: hard
-
-"pkg-dir@npm:^4.2.0":
- version: 4.2.0
- resolution: "pkg-dir@npm:4.2.0"
- dependencies:
- find-up: "npm:^4.0.0"
- checksum: 10c0/c56bda7769e04907a88423feb320babaed0711af8c436ce3e56763ab1021ba107c7b0cafb11cde7529f669cfc22bffcaebffb573645cbd63842ea9fb17cd7728
- languageName: node
- linkType: hard
-
"possible-typed-array-names@npm:^1.0.0":
version: 1.0.0
resolution: "possible-typed-array-names@npm:1.0.0"
@@ -17069,6 +16167,17 @@ __metadata:
languageName: node
linkType: hard
+"postcss@npm:^8.5.3":
+ version: 8.5.3
+ resolution: "postcss@npm:8.5.3"
+ dependencies:
+ nanoid: "npm:^3.3.8"
+ picocolors: "npm:^1.1.1"
+ source-map-js: "npm:^1.2.1"
+ checksum: 10c0/b75510d7b28c3ab728c8733dd01538314a18c52af426f199a3c9177e63eb08602a3938bfb66b62dc01350b9aed62087eabbf229af97a1659eb8d3513cec823b3
+ languageName: node
+ linkType: hard
+
"prelude-ls@npm:^1.2.1":
version: 1.2.1
resolution: "prelude-ls@npm:1.2.1"
@@ -17119,17 +16228,6 @@ __metadata:
languageName: node
linkType: hard
-"pretty-format@npm:^29.0.0, pretty-format@npm:^29.7.0":
- version: 29.7.0
- resolution: "pretty-format@npm:29.7.0"
- dependencies:
- "@jest/schemas": "npm:^29.6.3"
- ansi-styles: "npm:^5.0.0"
- react-is: "npm:^18.0.0"
- checksum: 10c0/edc5ff89f51916f036c62ed433506b55446ff739358de77207e63e88a28ca2894caac6e73dcb68166a606e51c8087d32d400473e6a9fdd2dbe743f46c9c0276f
- languageName: node
- linkType: hard
-
"pretty-ms@npm:^9.0.0":
version: 9.2.0
resolution: "pretty-ms@npm:9.2.0"
@@ -17194,16 +16292,6 @@ __metadata:
languageName: node
linkType: hard
-"prompts@npm:^2.0.1":
- version: 2.4.2
- resolution: "prompts@npm:2.4.2"
- dependencies:
- kleur: "npm:^3.0.3"
- sisteransi: "npm:^1.0.5"
- checksum: 10c0/16f1ac2977b19fe2cf53f8411cc98db7a3c8b115c479b2ca5c82b5527cd937aa405fa04f9a5960abeb9daef53191b53b4d13e35c1f5d50e8718c76917c5f1ea4
- languageName: node
- linkType: hard
-
"prop-types@npm:^15.8.1":
version: 15.8.1
resolution: "prop-types@npm:15.8.1"
@@ -17252,13 +16340,6 @@ __metadata:
languageName: node
linkType: hard
-"pure-rand@npm:^6.0.0":
- version: 6.1.0
- resolution: "pure-rand@npm:6.1.0"
- checksum: 10c0/1abe217897bf74dcb3a0c9aba3555fe975023147b48db540aa2faf507aee91c03bf54f6aef0eb2bf59cc259a16d06b28eca37f0dc426d94f4692aeff02fb0e65
- languageName: node
- linkType: hard
-
"query-string@npm:^9.1.1":
version: 9.1.1
resolution: "query-string@npm:9.1.1"
@@ -17390,13 +16471,6 @@ __metadata:
languageName: node
linkType: hard
-"react-is@npm:^18.0.0":
- version: 18.3.1
- resolution: "react-is@npm:18.3.1"
- checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072
- languageName: node
- linkType: hard
-
"react-leaflet@npm:^4":
version: 4.2.1
resolution: "react-leaflet@npm:4.2.1"
@@ -17666,8 +16740,22 @@ __metadata:
version: 0.15.2
resolution: "regenerator-transform@npm:0.15.2"
dependencies:
- "@babel/runtime": "npm:^7.8.4"
- checksum: 10c0/7cfe6931ec793269701994a93bab89c0cc95379191fad866270a7fea2adfec67ea62bb5b374db77058b60ba4509319d9b608664d0d288bd9989ca8dbd08fae90
+ "@babel/runtime": "npm:^7.8.4"
+ checksum: 10c0/7cfe6931ec793269701994a93bab89c0cc95379191fad866270a7fea2adfec67ea62bb5b374db77058b60ba4509319d9b608664d0d288bd9989ca8dbd08fae90
+ languageName: node
+ linkType: hard
+
+"regexp.prototype.flags@npm:^1.5.1":
+ version: 1.5.4
+ resolution: "regexp.prototype.flags@npm:1.5.4"
+ dependencies:
+ call-bind: "npm:^1.0.8"
+ define-properties: "npm:^1.2.1"
+ es-errors: "npm:^1.3.0"
+ get-proto: "npm:^1.0.1"
+ gopd: "npm:^1.2.0"
+ set-function-name: "npm:^2.0.2"
+ checksum: 10c0/83b88e6115b4af1c537f8dabf5c3744032cb875d63bc05c288b1b8c0ef37cbe55353f95d8ca817e8843806e3e150b118bc624e4279b24b4776b4198232735a77
languageName: node
linkType: hard
@@ -17876,16 +16964,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve-cwd@npm:^3.0.0":
- version: 3.0.0
- resolution: "resolve-cwd@npm:3.0.0"
- dependencies:
- resolve-from: "npm:^5.0.0"
- checksum: 10c0/e608a3ebd15356264653c32d7ecbc8fd702f94c6703ea4ac2fb81d9c359180cba0ae2e6b71faa446631ed6145454d5a56b227efc33a2d40638ac13f8beb20ee4
- languageName: node
- linkType: hard
-
-"resolve-from@npm:5.0.0, resolve-from@npm:^5.0.0":
+"resolve-from@npm:5.0.0":
version: 5.0.0
resolution: "resolve-from@npm:5.0.0"
checksum: 10c0/b21cb7f1fb746de8107b9febab60095187781137fd803e6a59a76d421444b1531b641bba5857f5dc011974d8a5c635d61cec49e6bd3b7fc20e01f0fafc4efbf2
@@ -17899,14 +16978,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve.exports@npm:^2.0.0":
- version: 2.0.3
- resolution: "resolve.exports@npm:2.0.3"
- checksum: 10c0/1ade1493f4642a6267d0a5e68faeac20b3d220f18c28b140343feb83694d8fed7a286852aef43689d16042c61e2ddb270be6578ad4a13990769e12065191200d
- languageName: node
- linkType: hard
-
-"resolve@npm:^1.14.2, resolve@npm:^1.20.0, resolve@npm:^1.22.1":
+"resolve@npm:^1.14.2, resolve@npm:^1.22.1":
version: 1.22.8
resolution: "resolve@npm:1.22.8"
dependencies:
@@ -17932,7 +17004,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin":
+"resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin":
version: 1.22.8
resolution: "resolve@patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"
dependencies:
@@ -18554,15 +17626,6 @@ __metadata:
languageName: node
linkType: hard
-"saxes@npm:^6.0.0":
- version: 6.0.0
- resolution: "saxes@npm:6.0.0"
- dependencies:
- xmlchars: "npm:^2.2.0"
- checksum: 10c0/3847b839f060ef3476eb8623d099aa502ad658f5c40fd60c105ebce86d244389b0d76fcae30f4d0c728d7705ceb2f7e9b34bb54717b6a7dbedaf5dad2d9a4b74
- languageName: node
- linkType: hard
-
"scheduler@npm:^0.25.0":
version: 0.25.0
resolution: "scheduler@npm:0.25.0"
@@ -18593,7 +17656,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^6.3.0, semver@npm:^6.3.1":
+"semver@npm:^6.3.1":
version: 6.3.1
resolution: "semver@npm:6.3.1"
bin:
@@ -18602,7 +17665,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^7, semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4":
+"semver@npm:^7, semver@npm:^7.3.5":
version: 7.6.3
resolution: "semver@npm:7.6.3"
bin:
@@ -18657,7 +17720,7 @@ __metadata:
languageName: node
linkType: hard
-"set-function-length@npm:^1.2.1":
+"set-function-length@npm:^1.2.1, set-function-length@npm:^1.2.2":
version: 1.2.2
resolution: "set-function-length@npm:1.2.2"
dependencies:
@@ -18720,6 +17783,41 @@ __metadata:
languageName: node
linkType: hard
+"side-channel-list@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "side-channel-list@npm:1.0.0"
+ dependencies:
+ es-errors: "npm:^1.3.0"
+ object-inspect: "npm:^1.13.3"
+ checksum: 10c0/644f4ac893456c9490ff388bf78aea9d333d5e5bfc64cfb84be8f04bf31ddc111a8d4b83b85d7e7e8a7b845bc185a9ad02c052d20e086983cf59f0be517d9b3d
+ languageName: node
+ linkType: hard
+
+"side-channel-map@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "side-channel-map@npm:1.0.1"
+ dependencies:
+ call-bound: "npm:^1.0.2"
+ es-errors: "npm:^1.3.0"
+ get-intrinsic: "npm:^1.2.5"
+ object-inspect: "npm:^1.13.3"
+ checksum: 10c0/010584e6444dd8a20b85bc926d934424bd809e1a3af941cace229f7fdcb751aada0fb7164f60c2e22292b7fa3c0ff0bce237081fd4cdbc80de1dc68e95430672
+ languageName: node
+ linkType: hard
+
+"side-channel-weakmap@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "side-channel-weakmap@npm:1.0.2"
+ dependencies:
+ call-bound: "npm:^1.0.2"
+ es-errors: "npm:^1.3.0"
+ get-intrinsic: "npm:^1.2.5"
+ object-inspect: "npm:^1.13.3"
+ side-channel-map: "npm:^1.0.1"
+ checksum: 10c0/71362709ac233e08807ccd980101c3e2d7efe849edc51455030327b059f6c4d292c237f94dc0685031dd11c07dd17a68afde235d6cf2102d949567f98ab58185
+ languageName: node
+ linkType: hard
+
"side-channel@npm:^1.0.4, side-channel@npm:^1.0.6":
version: 1.0.6
resolution: "side-channel@npm:1.0.6"
@@ -18732,7 +17830,27 @@ __metadata:
languageName: node
linkType: hard
-"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7":
+"side-channel@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "side-channel@npm:1.1.0"
+ dependencies:
+ es-errors: "npm:^1.3.0"
+ object-inspect: "npm:^1.13.3"
+ side-channel-list: "npm:^1.0.0"
+ side-channel-map: "npm:^1.0.1"
+ side-channel-weakmap: "npm:^1.0.2"
+ checksum: 10c0/cb20dad41eb032e6c24c0982e1e5a24963a28aa6122b4f05b3f3d6bf8ae7fd5474ef382c8f54a6a3ab86e0cac4d41a23bd64ede3970e5bfb50326ba02a7996e6
+ languageName: node
+ linkType: hard
+
+"siginfo@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "siginfo@npm:2.0.0"
+ checksum: 10c0/3def8f8e516fbb34cb6ae415b07ccc5d9c018d85b4b8611e3dc6f8be6d1899f693a4382913c9ed51a06babb5201639d76453ab297d1c54a456544acf5c892e34
+ languageName: node
+ linkType: hard
+
+"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3":
version: 3.0.7
resolution: "signal-exit@npm:3.0.7"
checksum: 10c0/25d272fa73e146048565e08f3309d5b942c1979a6f4a58a8c59d5fa299728e9c2fcd1a759ec870863b1fd38653670240cd420dad2ad9330c71f36608a6a1c912
@@ -18753,13 +17871,6 @@ __metadata:
languageName: node
linkType: hard
-"sisteransi@npm:^1.0.5":
- version: 1.0.5
- resolution: "sisteransi@npm:1.0.5"
- checksum: 10c0/230ac975cca485b7f6fe2b96a711aa62a6a26ead3e6fb8ba17c5a00d61b8bed0d7adc21f5626b70d7c33c62ff4e63933017a6462942c719d1980bb0b1207ad46
- languageName: node
- linkType: hard
-
"slash@npm:^3.0.0":
version: 3.0.0
resolution: "slash@npm:3.0.0"
@@ -18857,16 +17968,6 @@ __metadata:
languageName: node
linkType: hard
-"source-map-support@npm:0.5.13":
- version: 0.5.13
- resolution: "source-map-support@npm:0.5.13"
- dependencies:
- buffer-from: "npm:^1.0.0"
- source-map: "npm:^0.6.0"
- checksum: 10c0/137539f8c453fa0f496ea42049ab5da4569f96781f6ac8e5bfda26937be9494f4e8891f523c5f98f0e85f71b35d74127a00c46f83f6a4f54672b58d53202565e
- languageName: node
- linkType: hard
-
"source-map-support@npm:~0.5.20":
version: 0.5.21
resolution: "source-map-support@npm:0.5.21"
@@ -18877,7 +17978,7 @@ __metadata:
languageName: node
linkType: hard
-"source-map@npm:^0.6.0, source-map@npm:^0.6.1, source-map@npm:~0.6.0, source-map@npm:~0.6.1":
+"source-map@npm:^0.6.0, source-map@npm:~0.6.0":
version: 0.6.1
resolution: "source-map@npm:0.6.1"
checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011
@@ -18953,12 +18054,10 @@ __metadata:
languageName: node
linkType: hard
-"stack-utils@npm:^2.0.3":
- version: 2.0.6
- resolution: "stack-utils@npm:2.0.6"
- dependencies:
- escape-string-regexp: "npm:^2.0.0"
- checksum: 10c0/651c9f87667e077584bbe848acaecc6049bc71979f1e9a46c7b920cad4431c388df0f51b8ad7cfd6eed3db97a2878d0fc8b3122979439ea8bac29c61c95eec8a
+"stackback@npm:0.0.2":
+ version: 0.0.2
+ resolution: "stackback@npm:0.0.2"
+ checksum: 10c0/89a1416668f950236dd5ac9f9a6b2588e1b9b62b1b6ad8dff1bfc5d1a15dbf0aafc9b52d2226d00c28dffff212da464eaeebfc6b7578b9d180cef3e3782c5983
languageName: node
linkType: hard
@@ -18976,6 +18075,23 @@ __metadata:
languageName: node
linkType: hard
+"std-env@npm:^3.8.0":
+ version: 3.8.1
+ resolution: "std-env@npm:3.8.1"
+ checksum: 10c0/e9b19cca6bc6f06f91607db5b636662914ca8ec9efc525a99da6ec7e493afec109d3b017d21d9782b4369fcfb2891c7c4b4e3c60d495fdadf6861ce434e07bf8
+ languageName: node
+ linkType: hard
+
+"stop-iteration-iterator@npm:^1.0.0":
+ version: 1.1.0
+ resolution: "stop-iteration-iterator@npm:1.1.0"
+ dependencies:
+ es-errors: "npm:^1.3.0"
+ internal-slot: "npm:^1.1.0"
+ checksum: 10c0/de4e45706bb4c0354a4b1122a2b8cc45a639e86206807ce0baf390ee9218d3ef181923fa4d2b67443367c491aa255c5fbaa64bb74648e3c5b48299928af86c09
+ languageName: node
+ linkType: hard
+
"streamsearch@npm:^1.1.0":
version: 1.1.0
resolution: "streamsearch@npm:1.1.0"
@@ -18997,16 +18113,6 @@ __metadata:
languageName: node
linkType: hard
-"string-length@npm:^4.0.1":
- version: 4.0.2
- resolution: "string-length@npm:4.0.2"
- dependencies:
- char-regex: "npm:^1.0.2"
- strip-ansi: "npm:^6.0.0"
- checksum: 10c0/1cd77409c3d7db7bc59406f6bcc9ef0783671dcbabb23597a1177c166906ef2ee7c8290f78cae73a8aec858768f189d2cb417797df5e15ec4eb5e16b3346340c
- languageName: node
- linkType: hard
-
"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3":
version: 4.2.3
resolution: "string-width@npm:4.2.3"
@@ -19166,13 +18272,6 @@ __metadata:
languageName: node
linkType: hard
-"strip-bom@npm:^4.0.0":
- version: 4.0.0
- resolution: "strip-bom@npm:4.0.0"
- checksum: 10c0/26abad1172d6bc48985ab9a5f96c21e440f6e7e476686de49be813b5a59b3566dccb5c525b831ec54fe348283b47f3ffb8e080bc3f965fde12e84df23f6bb7ef
- languageName: node
- linkType: hard
-
"strip-comments@npm:^2.0.1":
version: 2.0.1
resolution: "strip-comments@npm:2.0.1"
@@ -19250,7 +18349,7 @@ __metadata:
languageName: node
linkType: hard
-"supports-color@npm:^8.0.0, supports-color@npm:^8.1.1":
+"supports-color@npm:^8.1.1":
version: 8.1.1
resolution: "supports-color@npm:8.1.1"
dependencies:
@@ -19292,13 +18391,6 @@ __metadata:
languageName: node
linkType: hard
-"symbol-tree@npm:^3.2.4":
- version: 3.2.4
- resolution: "symbol-tree@npm:3.2.4"
- checksum: 10c0/dfbe201ae09ac6053d163578778c53aa860a784147ecf95705de0cd23f42c851e1be7889241495e95c37cabb058edb1052f141387bef68f705afc8f9dd358509
- languageName: node
- linkType: hard
-
"sync-child-process@npm:^1.0.2":
version: 1.0.2
resolution: "sync-child-process@npm:1.0.2"
@@ -19376,17 +18468,6 @@ __metadata:
languageName: node
linkType: hard
-"test-exclude@npm:^6.0.0":
- version: 6.0.0
- resolution: "test-exclude@npm:6.0.0"
- dependencies:
- "@istanbuljs/schema": "npm:^0.1.2"
- glob: "npm:^7.1.4"
- minimatch: "npm:^3.0.4"
- checksum: 10c0/019d33d81adff3f9f1bfcff18125fb2d3c65564f437d9be539270ee74b994986abb8260c7c2ce90e8f30162178b09dbbce33c6389273afac4f36069c48521f57
- languageName: node
- linkType: hard
-
"through@npm:^2.3.6, through@npm:^2.3.8":
version: 2.3.8
resolution: "through@npm:2.3.8"
@@ -19394,6 +18475,20 @@ __metadata:
languageName: node
linkType: hard
+"tinybench@npm:^2.9.0":
+ version: 2.9.0
+ resolution: "tinybench@npm:2.9.0"
+ checksum: 10c0/c3500b0f60d2eb8db65250afe750b66d51623057ee88720b7f064894a6cb7eb93360ca824a60a31ab16dab30c7b1f06efe0795b352e37914a9d4bad86386a20c
+ languageName: node
+ linkType: hard
+
+"tinyexec@npm:^0.3.2":
+ version: 0.3.2
+ resolution: "tinyexec@npm:0.3.2"
+ checksum: 10c0/3efbf791a911be0bf0821eab37a3445c2ba07acc1522b1fa84ae1e55f10425076f1290f680286345ed919549ad67527d07281f1c19d584df3b74326909eb1f90
+ languageName: node
+ linkType: hard
+
"tinyglobby@npm:^0.2.10":
version: 0.2.10
resolution: "tinyglobby@npm:0.2.10"
@@ -19404,6 +18499,27 @@ __metadata:
languageName: node
linkType: hard
+"tinypool@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "tinypool@npm:1.0.2"
+ checksum: 10c0/31ac184c0ff1cf9a074741254fe9ea6de95026749eb2b8ec6fd2b9d8ca94abdccda731f8e102e7f32e72ed3b36d32c6975fd5f5523df3f1b6de6c3d8dfd95e63
+ languageName: node
+ linkType: hard
+
+"tinyrainbow@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "tinyrainbow@npm:2.0.0"
+ checksum: 10c0/c83c52bef4e0ae7fb8ec6a722f70b5b6fa8d8be1c85792e829f56c0e1be94ab70b293c032dc5048d4d37cfe678f1f5babb04bdc65fd123098800148ca989184f
+ languageName: node
+ linkType: hard
+
+"tinyspy@npm:^3.0.2":
+ version: 3.0.2
+ resolution: "tinyspy@npm:3.0.2"
+ checksum: 10c0/55ffad24e346622b59292e097c2ee30a63919d5acb7ceca87fc0d1c223090089890587b426e20054733f97a58f20af2c349fb7cc193697203868ab7ba00bcea0
+ languageName: node
+ linkType: hard
+
"title-case@npm:^2.1.0":
version: 2.1.1
resolution: "title-case@npm:2.1.1"
@@ -19432,13 +18548,6 @@ __metadata:
languageName: node
linkType: hard
-"tmpl@npm:1.0.5":
- version: 1.0.5
- resolution: "tmpl@npm:1.0.5"
- checksum: 10c0/f935537799c2d1922cb5d6d3805f594388f75338fe7a4a9dac41504dd539704ca4db45b883b52e7b0aa5b2fd5ddadb1452bf95cd23a69da2f793a843f9451cc9
- languageName: node
- linkType: hard
-
"to-regex-range@npm:^5.0.1":
version: 5.0.1
resolution: "to-regex-range@npm:5.0.1"
@@ -19455,7 +18564,7 @@ __metadata:
languageName: node
linkType: hard
-"tough-cookie@npm:^4.1.2, tough-cookie@npm:^4.1.4":
+"tough-cookie@npm:^4.1.4":
version: 4.1.4
resolution: "tough-cookie@npm:4.1.4"
dependencies:
@@ -19476,15 +18585,6 @@ __metadata:
languageName: node
linkType: hard
-"tr46@npm:^3.0.0":
- version: 3.0.0
- resolution: "tr46@npm:3.0.0"
- dependencies:
- punycode: "npm:^2.1.1"
- checksum: 10c0/cdc47cad3a9d0b6cb293e39ccb1066695ae6fdd39b9e4f351b010835a1f8b4f3a6dc3a55e896b421371187f22b48d7dac1b693de4f6551bdef7b6ab6735dfe3b
- languageName: node
- linkType: hard
-
"tr46@npm:~0.0.3":
version: 0.0.3
resolution: "tr46@npm:0.0.3"
@@ -19600,13 +18700,6 @@ __metadata:
languageName: node
linkType: hard
-"type-detect@npm:4.0.8":
- version: 4.0.8
- resolution: "type-detect@npm:4.0.8"
- checksum: 10c0/8fb9a51d3f365a7de84ab7f73b653534b61b622aa6800aecdb0f1095a4a646d3f5eb295322127b6573db7982afcd40ab492d038cf825a42093a58b1e1353e0bd
- languageName: node
- linkType: hard
-
"type-fest@npm:^0.16.0":
version: 0.16.0
resolution: "type-fest@npm:0.16.0"
@@ -20008,13 +19101,6 @@ __metadata:
languageName: node
linkType: hard
-"upath@npm:^2":
- version: 2.0.1
- resolution: "upath@npm:2.0.1"
- checksum: 10c0/79e8e1296b00e24a093b077cfd7a238712d09290c850ce59a7a01458ec78c8d26dcc2ab50b1b9d6a84dabf6511fb4969afeb8a5c9a001aa7272b9cc74c34670f
- languageName: node
- linkType: hard
-
"update-browserslist-db@npm:^1.1.1":
version: 1.1.1
resolution: "update-browserslist-db@npm:1.1.1"
@@ -20114,17 +19200,6 @@ __metadata:
languageName: node
linkType: hard
-"v8-to-istanbul@npm:^9.0.1":
- version: 9.3.0
- resolution: "v8-to-istanbul@npm:9.3.0"
- dependencies:
- "@jridgewell/trace-mapping": "npm:^0.3.12"
- "@types/istanbul-lib-coverage": "npm:^2.0.1"
- convert-source-map: "npm:^2.0.0"
- checksum: 10c0/968bcf1c7c88c04df1ffb463c179558a2ec17aa49e49376120504958239d9e9dad5281aa05f2a78542b8557f2be0b0b4c325710262f3b838b40d703d5ed30c23
- languageName: node
- linkType: hard
-
"value-or-promise@npm:^1.0.11, value-or-promise@npm:^1.0.12":
version: 1.0.12
resolution: "value-or-promise@npm:1.0.12"
@@ -20191,6 +19266,21 @@ __metadata:
languageName: node
linkType: hard
+"vite-node@npm:3.0.9":
+ version: 3.0.9
+ resolution: "vite-node@npm:3.0.9"
+ dependencies:
+ cac: "npm:^6.7.14"
+ debug: "npm:^4.4.0"
+ es-module-lexer: "npm:^1.6.0"
+ pathe: "npm:^2.0.3"
+ vite: "npm:^5.0.0 || ^6.0.0"
+ bin:
+ vite-node: vite-node.mjs
+ checksum: 10c0/97768a64182832c1ae1797667920fec002d283506b628b684df707fc453c6bf58719029c52c7a4cdf98f5a5a44769036126efdb8192d4040ba3d39f271aa338b
+ languageName: node
+ linkType: hard
+
"vite-plugin-pwa@npm:^0":
version: 0.21.1
resolution: "vite-plugin-pwa@npm:0.21.1"
@@ -20228,6 +19318,58 @@ __metadata:
languageName: node
linkType: hard
+"vite@npm:^5.0.0 || ^6.0.0":
+ version: 6.2.2
+ resolution: "vite@npm:6.2.2"
+ dependencies:
+ esbuild: "npm:^0.25.0"
+ fsevents: "npm:~2.3.3"
+ postcss: "npm:^8.5.3"
+ rollup: "npm:^4.30.1"
+ peerDependencies:
+ "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: ">=1.21.0"
+ less: "*"
+ lightningcss: ^1.21.0
+ sass: "*"
+ sass-embedded: "*"
+ stylus: "*"
+ sugarss: "*"
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ dependenciesMeta:
+ fsevents:
+ optional: true
+ peerDependenciesMeta:
+ "@types/node":
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+ bin:
+ vite: bin/vite.js
+ checksum: 10c0/52f5b1c10cfe5e3b6382c6de1811ebbf76df9b5a8bab3d65169446c6b54a5f1528f775b1548009a6d8aad11def20fba046bb3e9abb10c0c2c9ccd78118623bb8
+ languageName: node
+ linkType: hard
+
"vite@npm:^6":
version: 6.0.11
resolution: "vite@npm:6.0.11"
@@ -20332,6 +19474,59 @@ __metadata:
languageName: node
linkType: hard
+"vitest@npm:^3":
+ version: 3.0.9
+ resolution: "vitest@npm:3.0.9"
+ dependencies:
+ "@vitest/expect": "npm:3.0.9"
+ "@vitest/mocker": "npm:3.0.9"
+ "@vitest/pretty-format": "npm:^3.0.9"
+ "@vitest/runner": "npm:3.0.9"
+ "@vitest/snapshot": "npm:3.0.9"
+ "@vitest/spy": "npm:3.0.9"
+ "@vitest/utils": "npm:3.0.9"
+ chai: "npm:^5.2.0"
+ debug: "npm:^4.4.0"
+ expect-type: "npm:^1.1.0"
+ magic-string: "npm:^0.30.17"
+ pathe: "npm:^2.0.3"
+ std-env: "npm:^3.8.0"
+ tinybench: "npm:^2.9.0"
+ tinyexec: "npm:^0.3.2"
+ tinypool: "npm:^1.0.2"
+ tinyrainbow: "npm:^2.0.0"
+ vite: "npm:^5.0.0 || ^6.0.0"
+ vite-node: "npm:3.0.9"
+ why-is-node-running: "npm:^2.3.0"
+ peerDependencies:
+ "@edge-runtime/vm": "*"
+ "@types/debug": ^4.1.12
+ "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0
+ "@vitest/browser": 3.0.9
+ "@vitest/ui": 3.0.9
+ happy-dom: "*"
+ jsdom: "*"
+ peerDependenciesMeta:
+ "@edge-runtime/vm":
+ optional: true
+ "@types/debug":
+ optional: true
+ "@types/node":
+ optional: true
+ "@vitest/browser":
+ optional: true
+ "@vitest/ui":
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ bin:
+ vitest: vitest.mjs
+ checksum: 10c0/5bcd25cab1681f3a968a6483cd5fe115791bc02769bd73bc680bf40153474391a03a6329781b0fb0b8c2f95c82eb342a972bd5132d9bd0d4be92977af19574d0
+ languageName: node
+ linkType: hard
+
"w3c-keyname@npm:^2.2.4":
version: 2.2.8
resolution: "w3c-keyname@npm:2.2.8"
@@ -20339,24 +19534,6 @@ __metadata:
languageName: node
linkType: hard
-"w3c-xmlserializer@npm:^4.0.0":
- version: 4.0.0
- resolution: "w3c-xmlserializer@npm:4.0.0"
- dependencies:
- xml-name-validator: "npm:^4.0.0"
- checksum: 10c0/02cc66d6efc590bd630086cd88252444120f5feec5c4043932b0d0f74f8b060512f79dc77eb093a7ad04b4f02f39da79ce4af47ceb600f2bf9eacdc83204b1a8
- languageName: node
- linkType: hard
-
-"walker@npm:^1.0.8":
- version: 1.0.8
- resolution: "walker@npm:1.0.8"
- dependencies:
- makeerror: "npm:1.0.12"
- checksum: 10c0/a17e037bccd3ca8a25a80cb850903facdfed0de4864bd8728f1782370715d679fa72e0a0f5da7c1c1379365159901e5935f35be531229da53bbfc0efdabdb48e
- languageName: node
- linkType: hard
-
"warning@npm:^4.0.2":
version: 4.0.3
resolution: "warning@npm:4.0.3"
@@ -20425,15 +19602,6 @@ __metadata:
languageName: node
linkType: hard
-"whatwg-encoding@npm:^2.0.0":
- version: 2.0.0
- resolution: "whatwg-encoding@npm:2.0.0"
- dependencies:
- iconv-lite: "npm:0.6.3"
- checksum: 10c0/91b90a49f312dc751496fd23a7e68981e62f33afe938b97281ad766235c4872fc4e66319f925c5e9001502b3040dd25a33b02a9c693b73a4cbbfdc4ad10c3e3e
- languageName: node
- linkType: hard
-
"whatwg-mimetype@npm:^3.0.0":
version: 3.0.0
resolution: "whatwg-mimetype@npm:3.0.0"
@@ -20448,16 +19616,6 @@ __metadata:
languageName: node
linkType: hard
-"whatwg-url@npm:^11.0.0":
- version: 11.0.0
- resolution: "whatwg-url@npm:11.0.0"
- dependencies:
- tr46: "npm:^3.0.0"
- webidl-conversions: "npm:^7.0.0"
- checksum: 10c0/f7ec264976d7c725e0696fcaf9ebe056e14422eacbf92fdbb4462034609cba7d0c85ffa1aab05e9309d42969bcf04632ba5ed3f3882c516d7b093053315bf4c1
- languageName: node
- linkType: hard
-
"whatwg-url@npm:^5.0.0":
version: 5.0.0
resolution: "whatwg-url@npm:5.0.0"
@@ -20513,7 +19671,7 @@ __metadata:
languageName: node
linkType: hard
-"which-collection@npm:^1.0.2":
+"which-collection@npm:^1.0.1, which-collection@npm:^1.0.2":
version: 1.0.2
resolution: "which-collection@npm:1.0.2"
dependencies:
@@ -20532,6 +19690,21 @@ __metadata:
languageName: node
linkType: hard
+"which-typed-array@npm:^1.1.13":
+ version: 1.1.19
+ resolution: "which-typed-array@npm:1.1.19"
+ dependencies:
+ available-typed-arrays: "npm:^1.0.7"
+ call-bind: "npm:^1.0.8"
+ call-bound: "npm:^1.0.4"
+ for-each: "npm:^0.3.5"
+ get-proto: "npm:^1.0.1"
+ gopd: "npm:^1.2.0"
+ has-tostringtag: "npm:^1.0.2"
+ checksum: 10c0/702b5dc878addafe6c6300c3d0af5983b175c75fcb4f2a72dfc3dd38d93cf9e89581e4b29c854b16ea37e50a7d7fca5ae42ece5c273d8060dcd603b2404bbb3f
+ languageName: node
+ linkType: hard
+
"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15":
version: 1.1.16
resolution: "which-typed-array@npm:1.1.16"
@@ -20567,6 +19740,18 @@ __metadata:
languageName: node
linkType: hard
+"why-is-node-running@npm:^2.3.0":
+ version: 2.3.0
+ resolution: "why-is-node-running@npm:2.3.0"
+ dependencies:
+ siginfo: "npm:^2.0.0"
+ stackback: "npm:0.0.2"
+ bin:
+ why-is-node-running: cli.js
+ checksum: 10c0/1cde0b01b827d2cf4cb11db962f3958b9175d5d9e7ac7361d1a7b0e2dc6069a263e69118bd974c4f6d0a890ef4eedfe34cf3d5167ec14203dbc9a18620537054
+ languageName: node
+ linkType: hard
+
"widest-line@npm:^5.0.0":
version: 5.0.0
resolution: "widest-line@npm:5.0.0"
@@ -20831,17 +20016,7 @@ __metadata:
languageName: node
linkType: hard
-"write-file-atomic@npm:^4.0.2":
- version: 4.0.2
- resolution: "write-file-atomic@npm:4.0.2"
- dependencies:
- imurmurhash: "npm:^0.1.4"
- signal-exit: "npm:^3.0.7"
- checksum: 10c0/a2c282c95ef5d8e1c27b335ae897b5eca00e85590d92a3fd69a437919b7b93ff36a69ea04145da55829d2164e724bc62202cdb5f4b208b425aba0807889375c7
- languageName: node
- linkType: hard
-
-"ws@npm:^8.11.0, ws@npm:^8.17.1":
+"ws@npm:^8.17.1":
version: 8.18.0
resolution: "ws@npm:8.18.0"
peerDependencies:
@@ -20856,20 +20031,6 @@ __metadata:
languageName: node
linkType: hard
-"xml-name-validator@npm:^4.0.0":
- version: 4.0.0
- resolution: "xml-name-validator@npm:4.0.0"
- checksum: 10c0/c1bfa219d64e56fee265b2bd31b2fcecefc063ee802da1e73bad1f21d7afd89b943c9e2c97af2942f60b1ad46f915a4c81e00039c7d398b53cf410e29d3c30bd
- languageName: node
- linkType: hard
-
-"xmlchars@npm:^2.2.0":
- version: 2.2.0
- resolution: "xmlchars@npm:2.2.0"
- checksum: 10c0/b64b535861a6f310c5d9bfa10834cf49127c71922c297da9d4d1b45eeaae40bf9b4363275876088fbe2667e5db028d2cd4f8ee72eed9bede840a67d57dab7593
- languageName: node
- linkType: hard
-
"y18n@npm:^4.0.0":
version: 4.0.3
resolution: "y18n@npm:4.0.3"
@@ -20964,7 +20125,7 @@ __metadata:
languageName: node
linkType: hard
-"yargs@npm:^17, yargs@npm:^17.0.0, yargs@npm:^17.3.1, yargs@npm:^17.7.2":
+"yargs@npm:^17, yargs@npm:^17.0.0, yargs@npm:^17.7.2":
version: 17.7.2
resolution: "yargs@npm:17.7.2"
dependencies: