Skip to content

Instantly share code, notes, and snippets.

View JonathanRamier's full-sized avatar

Dev - Ninja JonathanRamier

View GitHub Profile
@JonathanRamier
JonathanRamier / app-1.spec.ts
Created February 19, 2017 21:41 — 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';