Skip to content
Snippets Groups Projects
Commit 8cf7da58 authored by Daniel Bimschas's avatar Daniel Bimschas
Browse files

HOLI-9793 HOLI-10970: syntax fix in smoke test

parent 67e2cd20
No related branches found
No related tags found
No related merge requests found
......@@ -28,19 +28,21 @@ function forQuery(query, checkFunction) {
// Define your smoketest(s) here.
export default () => {
forQuery(
`engagementRecosV2(offset:0, limit:10, topics:["animal-welfare"]) {
data {
engagement {
id
title
description
topicsV2
skillsV2
`{
engagementRecosV2(offset:0, limit:10, topics:["animal-welfare"]) {
data {
engagement {
id
title
description
topicsV2
skillsV2
}
matchedTopics
matchedSkills
}
}
matchedTopics
matchedSkills
}
}`,
}`,
(response) => {
check(response, {
'is status 200': (r) => r.status === 200,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment