test(models/domain): test instantiation

This commit is contained in:
2026-01-17 22:46:53 -03:00
parent 4c51822bf0
commit af84abe3f8
5 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { Product } from './Product';
describe('Product', () => {
it('should create', () => {
expect(new Product('1212121121', 'Mock Product', 'product.png', 1)).toBeTruthy();
});
});