Licence
MIT
Version
0.2.2
Deps
1
Size
18 kB
Vulns
0
Weekly
140
grft-test-simple-car-repository
Simple car in-memory repository.
Install
npm install grft-test-simple-car-repository-e2eUsage
import { InMemorySimpleCarRepository } from 'grft-test-simple-car-repository-e2e';
import { SimpleCar } from 'grft-test-simple-car-e2e';
const repo = new InMemorySimpleCarRepository();
const car = new SimpleCar('BMW', 'M3', 2023);
repo.add(car);
const allCars = repo.getAll();
console.log(`Total cars: ${allCars.length}`);