Initial structure

Generated with node-typescript-webpack
This commit is contained in:
Abhas
2018-06-21 15:06:07 +05:30
commit a7007048ab
20 changed files with 6410 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { Greeter } from '../src/greeter';
test('Should greet with message', () => {
const greeter = new Greeter('friend');
expect(greeter.greet()).toBe('Bonjour, friend!');
});