Fix types.

This commit is contained in:
Sam Rose 2024-12-09 21:25:20 +00:00
parent 34684df87a
commit 1c476e0e1d
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ export abstract class TestAPI {
config: TestConfiguration
request: SuperTest<Test>
protected constructor(config: TestConfiguration) {
constructor(config: TestConfiguration) {
this.config = config
this.request = config.request
}