Skip to content

Commit 6ae9686

Browse files
committed
fix(benchpress): update build step, read and config
Closes angular#4419
1 parent 4342a1e commit 6ae9686

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ var BENCHPRESS_BUNDLE_CONFIG = {
146146
'zone.js'
147147
],
148148
ignore: [
149-
'rx'
149+
'@reactivex/rxjs'
150150
],
151151
dest: CONFIG.dest.benchpress_bundle
152152
};

modules/benchpress/README.js.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,6 @@ Benchpress - a framework for e2e performance tests
33

44
The sources for this package are in the main [Angular2](https://github.com/angular/angular) repo. Please file issues and pull requests against that repo.
55

6-
This package contains different sources for different users:
7-
8-
1. The files located in the root folder can be consumed using CommonJS
9-
2. The files under `/es6` are es6 compatible files that can be transpiled to
10-
es5 using any transpiler. This contains:
11-
* `dev/`: a development version that includes runtime type assertions
12-
* `prod/`: a production version that does not include runtime type assertions
13-
3. The files under `/ts` are the Typescript source files
14-
15-
As a convenience, we provide you with `/es6/{dev|prod}/es5build.js`, a script to transpile the es6 sources into es5
16-
using [Google Traceur](https://github.com/google/traceur-compiler/).
6+
See [this project](https://github.com/angular/benchpress-tree) for an example.
177

188
License: Apache MIT 2.0

modules/benchpress/docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Benchpress
22

33
Benchpress is a framework for e2e performance tests.
4+
See [here for an example project](https://github.com/angular/benchpress-tree).
45

56
# Why?
67

protractor-shared.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var browsers = argv['browsers'].split(',');
3838
var CHROME_OPTIONS = {
3939
'args': ['--js-flags=--expose-gc'],
4040
'perfLoggingPrefs': {
41-
'traceCategories': 'v8,blink.console,disabled-by-default-devtools.timeline,devtools.timeline'
41+
'traceCategories': 'v8,blink.console,devtools.timeline'
4242
}
4343
};
4444

0 commit comments

Comments
 (0)