https://github.com/angular/angular
Raw File
Tip revision: 542d4c7805e890f5c06e301d4c38bc0f0a54804b authored by Alex Rickabaugh on 25 May 2022, 20:48:24 UTC
release: cut the v14.0.0-rc.2 release (#46143)
Tip revision: 542d4c7
dev_mode_spec.ts
/**
 * @license
 * Copyright Google LLC 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
 */

import {isDevMode} from '@angular/core';

{
  describe('dev mode', () => {
    it('is enabled in our tests by default', () => {
      expect(isDevMode()).toBe(true);
    });
  });
}
back to top