Skip to content

Commit

Permalink
Add 'go test' task
Browse files Browse the repository at this point in the history
Added a new task 'go test' to run tests with the 'go test' command.
  • Loading branch information
lazyguru committed Dec 6, 2023
1 parent be60edd commit 35e9a9a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@
"branch": true,
"resume": true
}
},
"go test": {
"name": "Test",
"command": "go test -v ./...",
"runAtStart": true,
"restartOn": {
"files": ["*"],
"branch": true,
"resume": true
}
}
}
}

0 comments on commit 35e9a9a

Please sign in to comment.