mirror of
https://github.com/gmeligio/flutter-docker-image.git
synced 2026-05-24 12:30:34 +00:00
17 lines
642 B
YAML
17 lines
642 B
YAML
schemaVersion: 2.0.0
|
|
commandTests:
|
|
- name: "Android SDK build tools is version 30.0.3"
|
|
command: "ls"
|
|
args: ["/home/flutter/sdks/android-sdk/build-tools"]
|
|
expectedOutput: ["30.0.3"]
|
|
- name: "Android SDK build tools directory only has one directory"
|
|
command: "bash"
|
|
args:
|
|
- -c
|
|
- |
|
|
ls /home/flutter/sdks/android-sdk/build-tools | wc -l
|
|
fileContentTests:
|
|
- name: 'Android SDK Command-line Tools is version 9.0'
|
|
path: '/home/flutter/sdks/android-sdk/cmdline-tools/latest/source.properties'
|
|
expectedContents: ['Pkg.Revision=9.0\nPkg.Path=cmdline-tools;9.0\nPkg.Desc=Android SDK Command-line Tools']
|