 86b63751a9
			
		
	
	86b63751a9
	
	
	
		
			
			* stable-3.0: Set version to 3.0.2 gr-user-header: Construct dashboard url from account id Allow to display change-list for inactive users run_test.sh: Fix bazelisk location detection Set version to 2.16.12-SNAPSHOT Set version to 2.16.11.1 Update git submodules Bazel: Adapt docs for custom plugins with external deps Update git submodules PolyGerrit: Run WCT tests using bazelisk dev-intellij.txt: Fix indentation level warning link-text-parser.js: Fix indentation Fix base url in addHTML to correctly match Add base url to addHTML Add license to dark-theme Change-Id: I848d9b3f76a17467a15c8fff6e7b891d148b623b
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| npm_bin=$(which npm)
 | |
| if [[ -z "$npm_bin" ]]; then
 | |
|     echo "NPM must be on the path. (https://www.npmjs.com/)"
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| # From https://www.linuxquestions.org/questions/programming-9/bash-script-return-full-path-and-filename-680368/page3.html
 | |
| function abs_path {
 | |
|   if [[ -d "$1" ]]
 | |
|   then
 | |
|       pushd "$1" >/dev/null
 | |
|       pwd
 | |
|       popd >/dev/null
 | |
|   elif [[ -e $1 ]]
 | |
|   then
 | |
|       pushd "$(dirname "$1")" >/dev/null
 | |
|       echo "$(pwd)/$(basename "$1")"
 | |
|       popd >/dev/null
 | |
|   else
 | |
|       echo "$1" does not exist! >&2
 | |
|       return 127
 | |
|   fi
 | |
| }
 | |
| wct_bin=$(which wct)
 | |
| if [[ -z "$wct_bin" ]]; then
 | |
|   wct_bin=$(abs_path ./node_modules/web-component-tester/bin/wct);
 | |
| fi
 | |
| if [[ -z "$wct_bin" ]]; then
 | |
|     echo "wct_bin must be set or WCT locally installed (npm install wct)."
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| bazel_bin=$(which bazelisk 2>/dev/null)
 | |
| if [[ -z "$bazel_bin" ]]; then
 | |
|     echo "Warning: bazelisk is not installed; falling back to bazel."
 | |
|     bazel_bin=bazel
 | |
| fi
 | |
| 
 | |
| # WCT tests are not hermetic, and need extra environment variables.
 | |
| # TODO(hanwen): does $DISPLAY even work on OSX?
 | |
| ${bazel_bin} test \
 | |
|       --test_env="HOME=$HOME" \
 | |
|       --test_env="WCT=${wct_bin}" \
 | |
|       --test_env="WCT_ARGS=${WCT_ARGS}" \
 | |
|       --test_env="NPM=${npm_bin}" \
 | |
|       --test_env="DISPLAY=${DISPLAY}" \
 | |
|       --test_env="WCT_HEADLESS_MODE=${WCT_HEADLESS_MODE}" \
 | |
|       "$@" \
 | |
|       //polygerrit-ui/app:embed_test \
 | |
|       //polygerrit-ui/app:wct_test
 |