Skip to content

Commit

Permalink
ci: add e2e tests for user flows
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfenrain committed Mar 1, 2023
1 parent 5c910bb commit 6725564
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/setup_local_environment.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ void main() {
final localSetup = '''
dependency_overrides:
fluttium:
path: ${path.canonicalize(Directory.current.uri.resolve('packages/fluttium').path)}
path: ${path.canonicalize(path.join(Directory.current.path, 'packages/fluttium'))}
fluttium_protocol:
path: ${path.canonicalize(Directory.current.uri.resolve('packages/fluttium_protocol').path)}
path: ${path.canonicalize(path.join(Directory.current.path, 'packages/fluttium_protocol'))}
fluttium_interfaces:
path: ${path.canonicalize(Directory.current.uri.resolve('packages/fluttium_interfaces').path)}
path: ${path.canonicalize(path.join(Directory.current.path, 'packages/fluttium_interfaces'))}
''';

File('example/pubspec_overrides.yaml').writeAsStringSync(localSetup);
Expand Down

0 comments on commit 6725564

Please sign in to comment.