build(docs-infra): update @angular/cli to 10.0.0-next.3 (#36145)
Update the Angular CLI and Angular framework packages to latest `@next` versions. Also, update the app to look more closely to how a newly generated app with the latest CLI would look like. PR Close #36145
This commit is contained in:

committed by
Alex Rickabaugh

parent
9d2241b901
commit
a468f11c7c
@ -38,7 +38,7 @@ exports.config = {
|
||||
register({project: join(__dirname, './tsconfig.json')});
|
||||
},
|
||||
onPrepare() {
|
||||
const {SpecReporter} = require('jasmine-spec-reporter');
|
||||
const {SpecReporter, StacktraceOption} = require('jasmine-spec-reporter');
|
||||
const {browser} = require('protractor');
|
||||
const {loadLegacyUrls, loadRemoteSitemapUrls} = require('../shared/helpers');
|
||||
|
||||
@ -54,7 +54,11 @@ exports.config = {
|
||||
}
|
||||
|
||||
Object.assign(config.params, {sitemapUrls, legacyUrls});
|
||||
jasmine.getEnv().addReporter(new SpecReporter({spec: {displayStacktrace: true}}));
|
||||
jasmine.getEnv().addReporter(new SpecReporter({
|
||||
spec: {
|
||||
displayStacktrace: StacktraceOption.PRETTY,
|
||||
},
|
||||
}));
|
||||
});
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user