This commit is contained in:
Thibault Deckers 2024-02-22 18:03:30 +01:00
parent 31b9b633ae
commit a0925273bf
3 changed files with 5 additions and 2 deletions

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Clone the repository. - name: Clone the repository.
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Get packages for the Flutter project. - name: Get packages for the Flutter project.
run: scripts/pub_get_all.sh run: scripts/pub_get_all.sh

View file

@ -16,7 +16,7 @@ jobs:
java-version: '17' java-version: '17'
- name: Clone the repository. - name: Clone the repository.
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Get packages for the Flutter project. - name: Get packages for the Flutter project.
run: scripts/pub_get_all.sh run: scripts/pub_get_all.sh

View file

@ -28,6 +28,9 @@ class FakeStorageService extends Fake implements StorageService {
), ),
}); });
@override
Future<Set<String>> getUntrackedTrashPaths(Iterable<String> knownPaths) => SynchronousFuture({});
@override @override
Future<String> getVaultRoot() => SynchronousFuture('/vault/'); Future<String> getVaultRoot() => SynchronousFuture('/vault/');
} }