Open sbishel opened 3 years ago
Add integration tests for missing File API endpoints
files := r.PathPrefix("/files").Subrouter() files.HandleFunc("/workspaces/{workspaceID}/{rootID}/{filename}", a.attachSession(a.handleServeFile, false)).Methods("GET")
These are currently in the ./src/octoClient.ts class, so test should go in ./src/octoClient.test.ts see ./integrationtests/blocks_test.go and sharing_test.go for samples.
./src/octoClient.ts
./src/octoClient.test.ts
I can take a try here!
Hi, new to this repository, I was looking for some good first issues, is this still available?
Add integration tests for missing File API endpoints
These are currently in the
./src/octoClient.ts
class, so test should go in./src/octoClient.test.ts
see ./integrationtests/blocks_test.go and sharing_test.go for samples.