Environment Variables & Args for Deno Testing in Visual Code Studio
For running tests,
My testing task in
```
{
"tasks": {
"test": "ENVIRON=TEST deno test --allow-all",
...}}
My testing task in
deno.json is```
{
"tasks": {
"test": "ENVIRON=TEST deno test --allow-all",
...}}
