2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-06-17 17:09:19 -04:00
|
|
|
import {isDevMode} from '@angular/core';
|
2015-11-04 14:20:12 -05:00
|
|
|
|
2017-12-15 19:28:41 -05:00
|
|
|
{
|
2015-11-04 14:20:12 -05:00
|
|
|
describe('dev mode', () => {
|
2016-06-17 17:09:19 -04:00
|
|
|
it('is enabled in our tests by default', () => { expect(isDevMode()).toBe(true); });
|
2015-11-04 14:20:12 -05:00
|
|
|
});
|
|
|
|
}
|