2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 09:47:54 -07:00
|
|
|
*
|
|
|
|
* 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 14:09:19 -07:00
|
|
|
import {isDevMode} from '@angular/core';
|
2015-11-04 11:20:12 -08:00
|
|
|
|
2017-12-15 16:28:41 -08:00
|
|
|
{
|
2015-11-04 11:20:12 -08:00
|
|
|
describe('dev mode', () => {
|
2020-04-13 16:40:21 -07:00
|
|
|
it('is enabled in our tests by default', () => {
|
|
|
|
expect(isDevMode()).toBe(true);
|
|
|
|
});
|
2015-11-04 11:20:12 -08:00
|
|
|
});
|
|
|
|
}
|