8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
import { Product } from './Product';
|
|
|
|
describe('Product', () => {
|
|
it('should create', () => {
|
|
expect(new Product('1212121121', 'Mock Product', 'product.png', 1)).toBeTruthy();
|
|
});
|
|
});
|