Revision 2d14724965e085f00c37c2f8779f5f4f107790f2 authored by alkavats1 on 05 January 2022, 20:36:10 UTC, committed by Andrew Scott on 05 January 2022, 23:21:10 UTC
fix the url link format from http to https in i18-common-locale-id.md file

PR Close #44638
1 parent e39f804
Raw File
jasmine-seed-generator.js
/**
 * @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
 */

'use strict';

// Generate a "random" seed, suitable to be used for pseudo-randomizing jasmine tests.
module.exports = {
  generateSeed: caller => {
    const seed = process.env.JASMINE_RANDOM_SEED || String(Math.random()).slice(-5);
    // tslint:disable-next-line: no-console
    console.log(`[${caller}] Jasmine random seed: ${seed}`);
    return seed;
  },
};
back to top