mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
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:
parent
00e4a8cad4
commit
e30498ca2c
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"include": ["core/**/*.js"],
|
"include": ["core/**/*.js", "test/**/*.js"],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"checkJs": true,
|
"checkJs": true,
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
|
|
|
@ -125,7 +125,7 @@ const resetDb = async () => {
|
||||||
* agent.get('/posts/') without having to worry about URL paths
|
* agent.get('/posts/') without having to worry about URL paths
|
||||||
*
|
*
|
||||||
* @param {Object} [options={}]
|
* @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
|
* @returns {TestAgent} agent
|
||||||
*/
|
*/
|
||||||
const getAdminAPIAgent = async (options = {}) => {
|
const getAdminAPIAgent = async (options = {}) => {
|
||||||
|
|
Loading…
Reference in a new issue