(runner: VitestRunner, userFixtures: UserFixtures)
| 61 | } |
| 62 | |
| 63 | extend(runner: VitestRunner, userFixtures: UserFixtures): TestFixtures { |
| 64 | const { suite } = getCurrentSuite() |
| 65 | const isTopLevel = !suite || suite.file === suite |
| 66 | const registrations = this.parseUserFixtures(runner, userFixtures, isTopLevel) |
| 67 | return new TestFixtures(registrations) |
| 68 | } |
| 69 | |
| 70 | get(suite: Suite): FixtureRegistrations { |
| 71 | let currentSuite: Suite | undefined = suite |
nothing calls this directly
no test coverage detected