Skip to content

Instantly share code, notes, and snippets.

View cdoremus's full-sized avatar

Craig Doremus cdoremus

View GitHub Profile
@cdoremus
cdoremus / app-1.spec.ts
Created October 17, 2016 15:07 — 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';