https://github.com/angular/angular
Raw File
Tip revision: a42483cb812db2cc950d5a4b4879065650cadae0 authored by Julie Ralph on 25 June 2015, 04:51:37 UTC
chore(test): upgrade form tests to testcomponentbuilder
Tip revision: a42483c
perf_launch_chrome.sh
#!/bin/bash

platform=`uname`
if [[ "$platform" == 'Linux' ]]; then
  `google-chrome --js-flags="--expose-gc"`
elif [[ "$platform" == 'Darwin' ]]; then
  `/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary \
      --enable-memory-info \
      --enable-precise-memory-info \
      --enable-memory-benchmarking \
      --js-flags="--expose-gc --allow-natives-syntax" \
      --disable-web-security \
      --remote-debugging-port=9222`
fi
back to top