mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-30 03:19:11 +08:00
Remove print statements from tests
This commit is contained in:
@ -14,11 +14,11 @@ void main() {
|
|||||||
|
|
||||||
setUp(() async {
|
setUp(() async {
|
||||||
tempDir = await Directory.systemTemp.createTemp('__flat_folder_test__');
|
tempDir = await Directory.systemTemp.createTemp('__flat_folder_test__');
|
||||||
print("TempDir: ${tempDir.path}");
|
// print("TempDir: ${tempDir.path}");
|
||||||
|
|
||||||
var random = Random();
|
var random = Random();
|
||||||
for (var i = 0; i < 300; i++) {
|
for (var i = 0; i < 300; i++) {
|
||||||
print("Building Note $i");
|
// print("Building Note $i");
|
||||||
await _writeRandomNote(random, tempDir.path);
|
await _writeRandomNote(random, tempDir.path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
tearDown(() async {
|
tearDown(() async {
|
||||||
print("Cleaning Up TempDir: ${tempDir.path}");
|
// print("Cleaning Up TempDir: ${tempDir.path}");
|
||||||
tempDir.deleteSync(recursive: true);
|
tempDir.deleteSync(recursive: true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user