diff --git a/lib/testing/src/README.md b/lib/testing/src/README.md new file mode 100644 index 0000000000..82b54e4b05 --- /dev/null +++ b/lib/testing/src/README.md @@ -0,0 +1,3 @@ +# Alfresco Testing Library + +Contains the reusable pages for e2e tests diff --git a/scripts/npm-check-bundles.sh b/scripts/npm-check-bundles.sh index f03c02b8c2..988ea8f9c4 100755 --- a/scripts/npm-check-bundles.sh +++ b/scripts/npm-check-bundles.sh @@ -110,6 +110,8 @@ do if [ ! -f package/_theming.scss ]; then if [ $PACKAGE == 'adf-extensions' ]; then echo "no style needed" + elif [ $PACKAGE == 'adf-testing' ]; then + echo "no style needed" else error_out '31;1' "$PACKAGE style not found!" >&2 exit 1 @@ -128,6 +130,8 @@ do if [ ! -f package/bundles/assets/$PACKAGE/i18n/en.json ]; then if [ $PACKAGE == 'adf-extensions' ]; then echo "no i18n needed" + elif [ $PACKAGE == 'adf-testing' ]; then + echo "no i18n needed" else error_out '31;1' "$PACKAGE i18n not found!" >&2 exit 1