Victor Berchet
da9b46a071
feat: camelCase Angular (kebab-case removal)
...
BREAKING CHANGE:
Angular is now fully camel case.
Before:
<p *ng-if="cond">
<my-cmp [my-prop]="exp">
<my-cmp (my-event)="action()">
<my-cmp [(my-prop)]="prop">
<input #my-input>
<template ng-for #my-item [ng-for-of]=items #my-index="index">
After
<p *ngIf="cond">
<my-cmp [myProp]="exp">
<my-cmp (myEvent)="action()">
<my-cmp [(myProp)]="prop">
<input #myInput>`,
<template ngFor="#my-item" [ngForOf]=items #myIndex="index">
The full details are found in [angular2/docs/migration/kebab-case.md](https://github.com/angular/angular/blob/master/modules/angular2/docs/migration/kebab-case.md )
2015-12-09 19:59:40 -08:00
Julie Ralph
cc8f1f9552
feat(testing): package angular2_testing to prepare it for publishing
...
Closes #5682
2015-12-09 03:01:21 +00:00
Tobias Bosch
0614797d84
refactor(test_injector): Provide separate methods for creating test injector with and without runtime compiler.
...
BREAKING CHANGE:
`createTestInjector()` does not more include the runtime compiler. Use `createTestInjectorWithRuntimeCompiler()` instead.
Closes #5583
2015-12-03 22:50:14 +00:00
Kevin Moore
1edb17b8d0
chore(test): add config for `pub serve` testing.
...
Closes #5580
Closes #5580
2015-12-03 13:35:16 -08:00
Julie Ralph
93a1ec29e1
feat(test): add angular2_testing dart library
...
angular2_testing is a user-facing dart test library built on top of
the package:test dart unittest framework and runner. For usage,
see modules_dart/angular2_testing/README.md.
Closes #3289
2015-12-03 11:33:46 -08:00