8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
import { DBPurchase } from './DBPurchase';
|
|
|
|
describe('DBPurchase', () => {
|
|
it('should create', () => {
|
|
expect(new DBPurchase(1, 1, Date.now(), 1000, 1, 1)).toBeTruthy();
|
|
});
|
|
});
|