Implement auth handler integration test

This commit is contained in:
2024-11-26 22:50:43 +01:00
parent e8868dde39
commit 4ddf1f570f
14 changed files with 499 additions and 15 deletions

View File

@@ -14,7 +14,7 @@
"go.lintTool": "golangci-lint",
"go.lintOnSave": "package",
"go.formatTool": "goimports",
"go.testFlags": ["-tags=test"],
"go.testFlags": ["-tags=test,integration"],
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
@@ -25,6 +25,6 @@
"gopls": {
"usePlaceholders": true,
"staticcheck": true,
"buildFlags": ["-tags", "test"]
"buildFlags": ["-tags", "test,integration"]
}
}