Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Rev | Line | |
---|
[6a3a178] | 1 | "use strict";
|
---|
| 2 | /**
|
---|
| 3 | * @license
|
---|
| 4 | * Copyright Google LLC All Rights Reserved.
|
---|
| 5 | *
|
---|
| 6 | * Use of this source code is governed by an MIT-style license that can be
|
---|
| 7 | * found in the LICENSE file at https://angular.io/license
|
---|
| 8 | */
|
---|
| 9 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
| 10 | exports.BASE_OPTIONS = exports.KARMA_BUILDER_INFO = exports.describeBuilder = void 0;
|
---|
| 11 | var testing_1 = require("../../testing");
|
---|
| 12 | Object.defineProperty(exports, "describeBuilder", { enumerable: true, get: function () { return testing_1.describeBuilder; } });
|
---|
| 13 | exports.KARMA_BUILDER_INFO = Object.freeze({
|
---|
| 14 | name: '@angular-devkit/build-angular:karma',
|
---|
| 15 | schemaPath: __dirname + '/../schema.json',
|
---|
| 16 | });
|
---|
| 17 | /**
|
---|
| 18 | * Contains all required karma builder fields.
|
---|
| 19 | * Also disables progress reporting to minimize logging output.
|
---|
| 20 | */
|
---|
| 21 | exports.BASE_OPTIONS = Object.freeze({
|
---|
| 22 | main: 'src/test.ts',
|
---|
| 23 | polyfills: 'src/polyfills.ts',
|
---|
| 24 | tsConfig: 'src/tsconfig.spec.json',
|
---|
| 25 | karmaConfig: 'karma.conf.js',
|
---|
| 26 | browsers: 'ChromeHeadlessCI',
|
---|
| 27 | progress: false,
|
---|
| 28 | watch: false,
|
---|
| 29 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.