8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import { HappinessCost } from './happiness-cost.model';
|
|
|
|
describe('HappinessCost', () => {
|
|
it('should create an instance', () => {
|
|
expect(new HappinessCost()).toBeTruthy();
|
|
});
|
|
});
|