Enabled jsdoc in tests + fixed issue in e2e framework

- Enabled jsdoc type checking in tests
- Fixed a minor issue I just committed to the e2e framework
This commit is contained in:
Hannah Wolfe 2022-02-11 12:44:58 +00:00
parent 00e4a8cad4
commit e30498ca2c
No known key found for this signature in database
GPG Key ID: AB586C3B5AE5C037
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"include": ["core/**/*.js"],
"include": ["core/**/*.js", "test/**/*.js"],
"compilerOptions": {
"checkJs": true,
"module": "commonjs",

View File

@ -125,7 +125,7 @@ const resetDb = async () => {
* agent.get('/posts/') without having to worry about URL paths
*
* @param {Object} [options={}]
* @param {Boolean} [options.membersApp] Include members in the boot process
* @param {Boolean} [options.members] Include members in the boot process
* @returns {TestAgent} agent
*/
const getAdminAPIAgent = async (options = {}) => {