You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
426 B
21 lines
426 B
2 years ago
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
source tool/common.sh
|
||
|
|
||
|
./tool/build-dev-container-image.sh
|
||
|
container_id="$(docker run --rm -d -p "80:80" nextcloud-neon-dev)"
|
||
|
function cleanup() {
|
||
|
docker kill "$container_id"
|
||
|
}
|
||
|
trap cleanup EXIT
|
||
|
|
||
|
(
|
||
|
cd packages/neon
|
||
|
fvm flutter drive \
|
||
|
--driver=test_driver/integration_test.dart \
|
||
|
--target=integration_test/screenshot_test.dart \
|
||
|
--android-emulator
|
||
|
)
|