-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
70 additions
and
22 deletions.
There are no files selected for viewing
10 changes: 8 additions & 2 deletions
10
catalyst_voices/packages/catalyst_voices_blocs/test/src/catalyst_voices_blocs_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
// ignore_for_file: prefer_const_constructors | ||
import 'package:test/test.dart'; | ||
|
||
void main() {} | ||
void main() { | ||
group('catalyst_voices_blocs', () { | ||
test('Dummy test', () { | ||
expect(1 + 1, equals(2)); | ||
}); | ||
}); | ||
} |
10 changes: 9 additions & 1 deletion
10
catalyst_voices/packages/catalyst_voices_models/test/src/catalyst_voices_models_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
void main() {} | ||
import 'package:test/test.dart'; | ||
|
||
void main() { | ||
group('catalyst_voices_models', () { | ||
test('Dummy test', () { | ||
expect(1 + 1, equals(2)); | ||
}); | ||
}); | ||
} |
10 changes: 9 additions & 1 deletion
10
...lyst_voices/packages/catalyst_voices_services/test/src/catalyst_voices_services_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
void main() {} | ||
import 'package:test/test.dart'; | ||
|
||
void main() { | ||
group('catalyst_voices_services', () { | ||
test('Dummy test', () { | ||
expect(1 + 1, equals(2)); | ||
}); | ||
}); | ||
} |
6 changes: 5 additions & 1 deletion
6
...oices/packages/catalyst_voices_view_models/test/src/catalyst_voices_view_models_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
import 'package:test/test.dart'; | ||
|
||
void main() { | ||
group('CatalystVoicesViewModels', () {}); | ||
group('catalyst_voices_view_models', () { | ||
test('Dummy test', () { | ||
expect(1 + 1, equals(2)); | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
void main() {} | ||
import 'package:test/test.dart'; | ||
|
||
void main() { | ||
group('catalyst_voices', () { | ||
test('Dummy test', () { | ||
expect(1 + 1, equals(2)); | ||
}); | ||
}); | ||
} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
catalyst_voices_packages/catalyst_analysis/example/pubspec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,6 @@ topics: [lints, analyzer, analysis] | |
|
||
environment: | ||
sdk: '>=3.3.3 <4.0.0' | ||
|
||
dev_dependencies: | ||
test: ^1.24.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ environment: | |
sdk: '>=3.3.3 <4.0.0' | ||
|
||
dev_dependencies: | ||
melos: ^5.2.2 | ||
melos: ^5.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 9 additions & 1 deletion
10
utilities/catalyst_voices_remote_widgets/test/src/catalyst_voices_remote_widgets_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
void main() {} | ||
import 'package:test/test.dart'; | ||
|
||
void main() { | ||
group('catalyst_voices_remote_widgets_test', () { | ||
test('Dummy test', () { | ||
expect(1 + 1, equals(2)); | ||
}); | ||
}); | ||
} |