merge changelog with trunk
This commit is contained in:
commit
b389cdb76e
|
@ -4,6 +4,10 @@
|
||||||
|
|
||||||
- Support for screenshots on test errors
|
- Support for screenshots on test errors
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- Update `wc-e2e` script to fix an issue with directories with a space in their name
|
||||||
|
|
||||||
# 0.2.0
|
# 0.2.0
|
||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|
|
@ -30,8 +30,8 @@ TESTRESULT=0
|
||||||
|
|
||||||
# Use the script symlink to find and change directory to the root of the package
|
# Use the script symlink to find and change directory to the root of the package
|
||||||
SCRIPTPATH=$(dirname "$0")
|
SCRIPTPATH=$(dirname "$0")
|
||||||
REALPATH=$(readlink $0)
|
REALPATH=$(readlink "$0")
|
||||||
cd $SCRIPTPATH/$(dirname "$REALPATH")/..
|
cd "$SCRIPTPATH/$(dirname "$REALPATH")/.."
|
||||||
|
|
||||||
# Run scripts
|
# Run scripts
|
||||||
case $1 in
|
case $1 in
|
||||||
|
@ -65,6 +65,6 @@ case $1 in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Restore working path
|
# Restore working path
|
||||||
cd $OLDPATH
|
cd "$OLDPATH"
|
||||||
|
|
||||||
exit $TESTRESULT
|
exit $TESTRESULT
|
||||||
|
|
Loading…
Reference in New Issue