Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Dec 26, 2024
1 parent 592c692 commit e985ab0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
"lint:fix": "cd client && eslint . --fix && cd ../server && eslint . --fix && cd ..",
"test": "yarn compile-tests && yarn lint && yarn test:e2e && yarn test:unit",
"test:e2e": "vscode-test",
"test:unit": "cd client && yarn run test:highlighter && cd .. && yarn workspaces foreach -Rpt --from '{wollok-lsp-ide-server,wollok-debug-adapter}' run test",
"test:unit": "cd packages/client && yarn run test:highlighter && cd .. && yarn workspaces foreach -Rpt --from '{wollok-lsp-ide-server,wollok-debug-adapter}' run test",
"nyc": "nyc",
"build-coverage-report": "rimraf coverage-total && cpy --flat ./coverage-e2e/coverage-final.json ./coverage-total --rename=coverage-e2e.json && cpy --flat ./coverage-unit/coverage-final.json ./coverage-total --rename=coverage-unit.json && nyc merge ./coverage-total ./coverage-total/coverage.json",
"coverage": "yarn cover:unit && yarn cover:e2e",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const completionsForNode = (node: Node): CompletionItem[] => {
)
} catch (error) {
logger.error(`✘ Completions for node ${node.kind} (${node.sourceMap} - ${node.sourceFileName}) failed: ${error}`, error)
return [] // completeForParent(node)
return completeForParent(node)
}
}

Expand Down

0 comments on commit e985ab0

Please sign in to comment.