import anyTest, { TestFn } from 'ava' import { createDriver, Driver } from './driver' const test = anyTest as TestFn test.before(async (t) => { t.context = await createDriver() }) test.after.always((t) => { return t.context.stop() }) test('Only has one window', async (t) => { t.is(await t.context.windowCount(), 1) })