Files
Abhas a7007048ab Initial structure
Generated with node-typescript-webpack
2018-06-21 15:06:07 +05:30

7 lines
182 B
TypeScript

import { Greeter } from '../src/greeter';
test('Should greet with message', () => {
const greeter = new Greeter('friend');
expect(greeter.greet()).toBe('Bonjour, friend!');
});