podman-desktop/website/vitest.config.js
SoniaSandler 7155f934d5
chore: map release notes to their respective file names on GH (#8790)
* chore: map release notes to their respective file names on GH
Signed-off-by: Sonia Sandler <[email protected]>

* chore: create mapping json file automatically
Signed-off-by: Sonia Sandler <[email protected]>

* chore: add release notes and image to mapping
Signed-off-by: Sonia Sandler <[email protected]>

* chore: change json file structure
Signed-off-by: Sonia Sandler <[email protected]>

* chore: remove release notes mapping in renderer
Signed-off-by: Sonia Sandler <[email protected]>

* chore: create separate json file for each release
Signed-off-by: Sonia Sandler <[email protected]>

* chore: remove truncate from parser
Signed-off-by: Sonia Sandler <[email protected]>

* chore: remove generated files
Signed-off-by: Sonia Sandler <[email protected]>

* chore: add tests
Signed-off-by: Sonia Sandler <[email protected]>

* chore: configure tests for website
Signed-off-by: Sonia Sandler <[email protected]>

* chore: refactor notes code
Signed-off-by: Sonia Sandler <[email protected]>

* chore: remove unused import
Signed-off-by: Sonia Sandler <[email protected]>

* chore: fix tests
Signed-off-by: Sonia Sandler <[email protected]>

* chore: change automatic line change in package.json
Signed-off-by: Sonia Sandler <[email protected]>
2024-09-12 13:22:31 +00:00

31 lines
1 KiB
JavaScript

/**********************************************************************
* Copyright (C) 2023 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
***********************************************************************/
import { coverageConfig, testConfig } from '../vitest-shared-extensions.config';
const PACKAGE_ROOT = __dirname;
const PACKAGE_NAME = 'website';
const config = {
test: {
...testConfig(),
...coverageConfig(PACKAGE_ROOT, PACKAGE_NAME),
},
};
export default config;