Installing Tools
Karma
npm i karma-cli -D
npm i karma -D
npm i karma-chrome-launcher -D
npm i karma-jasmine -D
npm i jasmine-core -D
npm i @types/jasmine -D
describe('firt test', () => {
it('should be true', () => {
})
});
describe should be the name of method or object to be tested
it should be start with should