Skip to content

Commit

Permalink
refactor: try
Browse files Browse the repository at this point in the history
  • Loading branch information
collettemathieu committed Jul 14, 2024
1 parent 9eb3e5c commit 98d46c9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
21 changes: 10 additions & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"bun.runtime": "$HOME/.bun/bin/bun",
"bun.debugTerminal.enabled": true,
"bun.debugTerminal.stopOnEntry": false,
"editor.formatOnSave": true,
"bun.runtime": "$HOME/.bun/bin/bun",
"cucumber.features": [
"apps/bewoak-api/src/tests/**/*.ts"
],
"cucumber.glue": [
"apps/bewoak-api/src/tests/**/*.ts"
],
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"quickfix.biome": "explicit",
"source.organizeImports": "explicit",
"source.organizeImports.biome": "explicit"
},
"editor.defaultFormatter": "biomejs.biome",
"cucumber.features": [
"apps/bewoak-api/**/*.ts",
"apps/bewoak-api/**/*.feature"
],
"cucumber.glue": [
"apps/bewoak-api/**/*.ts"
],
}
"editor.formatOnSave": true
}
5 changes: 4 additions & 1 deletion apps/bewoak-api/cucumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ module.exports = {
paths: ['apps/bewoak-api/src/tests/**/*.feature'],
requireModule: ['ts-node/register'],
require: ['apps/bewoak-api/src/tests/**/*.ts'],
format: ['json:dist/bewoak-api/tests/reports/cucumber_report.json'],
format: [
'progress-bar',
'json:dist/bewoak-api/tests/reports/cucumber_report.json',
],
},
};
2 changes: 1 addition & 1 deletion apps/bewoak-api/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function bootstrap() {
const port = process.env.PORT || 3000;
await app.listen(port);
Logger.log(
`🚀 TESt Application is running on: http://localhost:${port}/${globalPrefix}`
`🚀 Application is running on: http://localhost:${port}/${globalPrefix}`
);
}

Expand Down
File renamed without changes.

0 comments on commit 98d46c9

Please sign in to comment.