build: adding basic e2e testing infrastructure
This commit is contained in:
@ -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 {
|
@ -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>
|
||||
|
@ -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',
|
||||
|
Reference in New Issue
Block a user