Files
tps/src/modules/pull-system/feature/feature.fixture.test.ts
2024-12-22 18:31:31 +01:00

11 lines
253 B
TypeScript

import { faker } from '@faker-js/faker'
import { describe, it } from 'vitest'
describe('feature fixture', () => {
it('creates lots of animals', () => {
for (let i = 0; i < 200; i++) {
console.log(`"${faker.animal.bird()}", `)
}
})
})