Skip to content

Commit

Permalink
files
Browse files Browse the repository at this point in the history
  • Loading branch information
prayanshchh committed Sep 10, 2024
1 parent a1675fd commit aa63922
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 4 additions & 2 deletions vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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',
},
});

0 comments on commit aa63922

Please sign in to comment.