test: make integration test more reliable (#14413)

Use a fresh yarn cache
tsickle bugfix to write case-sensitive filenames for Mac
This commit is contained in:
Alex Eagle 2017-02-10 16:23:44 -08:00 committed by Miško Hevery
parent 0f161ce27a
commit adc54302cb
3 changed files with 19 additions and 23 deletions

View File

@ -16,6 +16,16 @@ if [ ! -d "../dist/packages-dist-es2015" ]; then
exit 1
fi
# Workaround https://github.com/yarnpkg/yarn/issues/2165
# Yarn will cache file://dist URIs and not update Angular code
readonly cache=.yarn_local_cache
function rm_cache {
rm -rf $cache
}
rm_cache
mkdir $cache
trap rm_cache EXIT
for testDir in $(ls | grep -v rxjs | grep -v node_modules) ; do
[[ -d "$testDir" ]] || continue
echo "#################################"
@ -25,7 +35,7 @@ for testDir in $(ls | grep -v rxjs | grep -v node_modules) ; do
cd $testDir
# Workaround for https://github.com/yarnpkg/yarn/issues/2256
rm -f yarn.lock
yarn
yarn install --cache-folder ../$cache
yarn test || exit 1
)
done

View File

@ -1,6 +1,6 @@
{
"name": "angular-srcs",
"version": "4.0.0-beta.6",
"version": "4.0.0-beta.7",
"dependencies": {
"@types/angularjs": {
"version": "1.5.13-alpha",
@ -6160,14 +6160,8 @@
}
},
"tsickle": {
"version": "0.21.1",
"dev": true,
"dependencies": {
"source-map": {
"version": "0.5.6",
"dev": true
}
}
"version": "0.21.2",
"dev": true
},
"tslint": {
"version": "4.1.1",

18
npm-shrinkwrap.json generated
View File

@ -1,6 +1,6 @@
{
"name": "angular-srcs",
"version": "4.0.0-beta.6",
"version": "4.0.0-beta.7",
"dependencies": {
"@types/angularjs": {
"version": "1.5.13-alpha",
@ -9008,18 +9008,10 @@
}
},
"tsickle": {
"version": "0.21.1",
"from": "tsickle@0.21.1",
"resolved": "https://registry.npmjs.org/tsickle/-/tsickle-0.21.1.tgz",
"dev": true,
"dependencies": {
"source-map": {
"version": "0.5.6",
"from": "source-map@>=0.5.6 <0.6.0",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
"dev": true
}
}
"version": "0.21.2",
"from": "tsickle@0.21.2",
"resolved": "https://registry.npmjs.org/tsickle/-/tsickle-0.21.2.tgz",
"dev": true
},
"tslint": {
"version": "4.1.1",