Skip to content

Commit

Permalink
fix: add project environment variables to provider test (#2)
Browse files Browse the repository at this point in the history
Signed-off-by: Toma Puljak <[email protected]>
  • Loading branch information
Tpuljak committed Apr 3, 2024
1 parent bea79a9 commit b98d651
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkg/provider/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ var project1 = &types.Project{
Branch: "main",
},
WorkspaceId: "123",
EnvVars: map[string]string{
"DAYTONA_WS_ID": "123",
"DAYTONA_WS_PROJECT_NAME": "test",
"DAYTONA_WS_PROJECT_REPOSITORY_URL": "https://github.com/daytonaio/daytona",
"DAYTONA_SERVER_API_KEY": "api-key-test",
"DAYTONA_SERVER_VERSION": "latest",
"DAYTONA_SERVER_URL": "http://localhost:3001",
"DAYTONA_SERVER_API_URL": "http://localhost:3000",
},
}

var workspace = &types.Workspace{
Expand Down

0 comments on commit b98d651

Please sign in to comment.