fix(seed): Fix typo in test of Mongoose dependency (#16606)

Closes #16604
This commit is contained in:
Juraj Majerik
2018-01-30 23:50:48 +07:00
committed by mrugesh mohapatra
parent e232565f03
commit 99e1f45d0f

View File

@ -80,7 +80,7 @@
}, },
{ {
"text": "\"mongoose\" dependency should be in package.json", "text": "\"mongoose\" dependency should be in package.json",
"testString": "getUserInput => $.get(getUserInput('url') + '/_api/file/package.json').then(data => { var packJson = JSON.parse(data); assert.property(packJson.dependencies, 'mongooose'); }, xhr => { throw new Error(xhr.responseText); })" "testString": "getUserInput => $.get(getUserInput('url') + '/_api/file/package.json').then(data => { var packJson = JSON.parse(data); assert.property(packJson.dependencies, 'mongoose'); }, xhr => { throw new Error(xhr.responseText); })"
} }
], ],
"solutions": [], "solutions": [],