build: adding basic e2e testing infrastructure

This commit is contained in:
Igor Minar
2016-05-01 22:54:19 -07:00
parent fdd8bd1a36
commit 2e1f3f003d
105 changed files with 341 additions and 182 deletions

View File

@ -1,5 +1,5 @@
import {Injectable} from '@angular/core';
import {ListWrapper, Predicate} from '@angular/facade';
import {ListWrapper, Predicate} from '@angular/core/src/facade/collection';
// base model for RecordStore
export abstract class KeyModel {

View File

@ -1,13 +1,14 @@
<!doctype html>
<html>
<base>
<title>Todo Angular 2</title>
<link rel="stylesheet" href="css/main.css" media="screen" title="no title" charset="utf-8">
<base href="./">
<body>
<todo-app>
Loading...
</todo-app>
$SCRIPTS$
<script src="../bootstrap.js"></script>
</body>
</html>

View File

@ -1,7 +1,7 @@
import {bootstrap} from '@angular/platform-browser';
import {bootstrap} from '@angular/platform-browser-dynamic';
import {Component} from '@angular/core';
import {NgFor} from '@angular/common';
import {Store, Todo, TodoFactory} from './services/TodoStore';
import {Store, Todo, TodoFactory} from './app/TodoStore';
@Component({
selector: 'todo-app',