chore(tests): Enable dev mode in all Angular tests.

Closes #5106
This commit is contained in:
Alex Rickabaugh
2015-11-04 11:20:12 -08:00
parent 0b11051ac1
commit aa70275b01
6 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import {
AsyncTestCompleter,
beforeEach,
ddescribe,
describe,
expect,
iit,
inject,
it,
xdescribe,
xit
} from 'angular2/testing_internal';
import {assertionsEnabled} from 'angular2/src/core/facade/lang';
export function main() {
describe('dev mode', () => {
it('is enabled in our tests by default', () => { expect(assertionsEnabled()).toBe(true); });
});
}