Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuspepe committed Aug 29, 2023
1 parent c453986 commit f5a95d4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sidekick/test/tab_completion_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ void main() {
// TODO use GlobalSidekickRoot.binDir when made available through updated sidekick_core dependency
final userHome = Platform.environment['HOME']!;
final sidekickBinDir = Directory('$userHome/.sidekick/bin');
if (!sidekickBinDir.existsSync()) {
return;
}
// beware: sidekickBinDir.file('dashi').existsSync() always returns false because it's a link, not a file
final dashiSymLink = sidekickBinDir
.listSync()
Expand Down

0 comments on commit f5a95d4

Please sign in to comment.