Create project scaffolding using yo node-typescript

This commit is contained in:
2019-12-14 23:17:13 +05:30
commit 3af08413d8
17 changed files with 4151 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!');
});