Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 546 Bytes

File metadata and controls

23 lines (16 loc) · 546 Bytes

Testing

Running Tests

go test ./...              # Run all tests
go test -v ./...           # Verbose output
go test ./internal/utils/...  # Specific package
go test -v -run TestName ./...  # Specific test

Integration Tests

Integration tests require TEST_REFRESH_TOKEN (skipped if not set):

export TEST_REFRESH_TOKEN="your_refresh_token"
go test -v ./...

Get token from Last9 API Access Settings.

Note: Never commit TEST_REFRESH_TOKEN to version control.