Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: vitest #3344

Open
wants to merge 15 commits into
base: v6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module.exports = {
"env": {
"browser": true,
"es6": true,
"mocha": true,
"node": true
},
"extends": [
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ node_modules
dist/
.nyc_output/
.cache
.mocha-puppeteer

# TypeScript compiled files
packages/**/lib
Expand Down
7 changes: 0 additions & 7 deletions .mocharc.json

This file was deleted.

8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"search.exclude": {
"**/node_modules": true,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
"**/dist": true,
}
}
4 changes: 2 additions & 2 deletions docs/cookbook/general/client-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('\'users\' service - client', function () {
let server;
let client;

before(async () => {
beforeAll(async () => {
await app.service('users').create({ email, password });

server = app.listen(port);
Expand All @@ -40,7 +40,7 @@ describe('\'users\' service - client', function () {
client = await makeClient(host, port, email, password);
});

after(() => {
afterAll(() => {
client.logout();
server.close();
});
Expand Down
Loading
Loading