import { test, expect } from '../fixtures/todo-fixture'; test('uses a todo fixture', async ({ todoStore }) => { todoStore.add('write fixture'); expect(todoStore.items).toEqual(['write fixture']); });