Skip to content

Commit

Permalink
fixup! fix(core): correctly check for typeof of undefined in `ngDev…
Browse files Browse the repository at this point in the history
…Mode` check
  • Loading branch information
alan-agius4 committed Sep 20, 2022
1 parent 85a8210 commit dfe887b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions packages/core/test/enable_prod_mode_spec.ts
@@ -0,0 +1,19 @@
/**
* @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 {enableProdMode} from '@angular/core';


describe('enableProdMode', () => {
it(`should set 'ngDevMode' to false when 'ngDevMode' is undefined`, () => {
const global = globalThis as typeof globalThis & {'ngDevMode': unknown};
global.ngDevMode = undefined;
enableProdMode();
expect(global.ngDevMode).toBeFalse();
});
});

0 comments on commit dfe887b

Please sign in to comment.