mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
17 lines
377 B
Bash
17 lines
377 B
Bash
# Copyright (c) 2019-2024, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
load lib
|
|
|
|
@test 'android-integration options can be used' {
|
|
bats_require_minimum_version 1.5.0
|
|
run ! command -v am
|
|
|
|
cp \
|
|
"$ON_DEVICE_TESTS_DIR/config-android-integration.nix" \
|
|
~/.config/nixpkgs/nix-on-droid.nix
|
|
nix-on-droid switch
|
|
|
|
command -v am
|
|
|
|
switch_to_default_config
|
|
}
|