docs: added more description comments in code with links

This commit is contained in:
user
2021-12-18 11:31:39 +01:00
parent 2243405690
commit 0f93dc3f72
7 changed files with 22985 additions and 105 deletions

View File

@@ -1,5 +1,6 @@
# Load testing with Artillery.
# Can also be good for seeding database with lots of dummy data.
# https://github.com/Sairyss/backend-best-practices#load-testing
# https://www.npmjs.com/package/artillery
# https://www.npmjs.com/package/artillery-plugin-faker
config:

View File

@@ -8,7 +8,10 @@ import { getTestServer, TestServer } from '../../jestSetupAfterEnv';
const feature = loadFeature('tests/user/create-user/create-user.feature');
// e2e test implementing a Gherkin feature file
/**
* e2e test implementing a Gherkin feature file
* https://github.com/Sairyss/backend-best-practices#testing
*/
defineFeature(feature, test => {
let testServer: TestServer;