diff --git a/README.md b/README.md index 74259c33cd..bdf939c79f 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Core features include: 1. The `talawa` documentation can be found at our [docs.talawa.io](https://docs.talawa.io) site. 1. It is automatically generated from the markdown files stored in our [Talawa-Docs GitHub repository](https://github.com/PalisadoesFoundation/talawa-docs). This makes it easy for you to update our documenation. -# Videos +## Videos 1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. diff --git a/vite.config.mts b/vite.config.mts index 77003926e7..2f366e80a8 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -10,7 +10,6 @@ export default defineConfig({ // specifically looks for those functions in the `globalSetup.ts` file. // More info here https://vitest.dev/config/#globalsetup globalSetup: ["./tests/helpers/globalSetup.ts"], - coverage: { // This tells vitest to include all files from ./src in test coverage. all: true, @@ -48,8 +47,11 @@ export default defineConfig({ // is used in codecov/codecov-action github action for talawa-api. reporter: ["lcov", "text"], }, - + // Tells vitest the time limit for an individual test block run. testTimeout: 30000, + + // Use a thread pool for parallel execution to improve performance + pool: 'threads', }, });