Skip to content

Instantly share code, notes, and snippets.

View cminhho's full-sized avatar
:octocat:
Focusing

Ho Minh Chung (Chung Ho) cminhho

:octocat:
Focusing
View GitHub Profile
@cminhho
cminhho / app-1.spec.ts
Created August 29, 2019 11:35 — forked from wkwiatek/app-1.spec.ts
Angular 2 test snippets for Angular final version. Codebase for https://developers.livechatinc.com/blog/category/programming/angular-2/
// App
import { Component } from '@angular/core';
@Component({
selector: 'app',
template: '<span>{{ sayHello() }}</span>',
})
export class App {
public name: string = 'John';