6
6
7
7
Simple, fast generation of [ RFC4122] ( https://www.ietf.org/rfc/rfc4122.txt ) and [ RFC9562] ( https://www.rfc-editor.org/rfc/rfc9562.html ) UUIDs.
8
8
9
- - [ UUID Plus] ( #uuid-plus )
10
- - [ Getting Started] ( #getting-started )
11
- - [ Instructions] ( #instructions )
12
- - [ Pubspec] ( #pubspec )
13
- - [ Testing] ( #testing )
14
- - [ Running Tests in Native Environment] ( #running-tests-in-native-environment )
15
- - [ Running Tests in Browser Environment] ( #running-tests-in-browser-environment )
16
- - [ Release notes] ( #release-notes )
17
- - [ Attribution] ( #attribution )
9
+ * [ UUID Plus] ( #uuid-plus )
10
+ * [ Getting Started] ( #getting-started )
11
+ * [ Instructions] ( #instructions )
12
+ * [ Pubspec] ( #pubspec )
13
+ * [ Testing] ( #testing )
14
+ * [ Running Tests in Native Environment] ( #running-tests-in-native-environment )
15
+ * [ Running Tests in Browser Environment] ( #running-tests-in-browser-environment )
16
+ * [ Release notes] ( #release-notes )
17
+ * [ Attribution] ( #attribution )
18
18
19
19
Features:
20
20
@@ -69,19 +69,19 @@ To run specific tests:
69
69
70
70
``` bash
71
71
# Run a specific test file
72
- dart test test/uuid_test .dart
72
+ dart test test/v4_test .dart
73
73
74
74
# Run a specific test group (by name)
75
- dart test test/uuid_test .dart --name=" Version 7 Tests "
75
+ dart test test/v7_test .dart --name=" UuidV7 "
76
76
77
77
# Run a specific individual test
78
- dart test test/uuid_test .dart --name=" IDs created at same mSec are different "
78
+ dart test test/v7_test .dart --name=" Direct UuidV7 Class Tests "
79
79
80
80
# Run tests matching a pattern
81
- dart test test/uuid_test .dart --name=" timestamp"
81
+ dart test test/v7_test .dart --name=" timestamp"
82
82
83
83
# Run multiple test files
84
- dart test test/uuid_test .dart test/other_test .dart
84
+ dart test test/v4_test .dart test/v7_test .dart
85
85
```
86
86
87
87
### Running Tests in Browser Environment
@@ -93,7 +93,7 @@ To run all tests:
93
93
dart test -p chrome
94
94
95
95
# Run only UUID v7 tests in Chrome
96
- dart test test/uuid_test .dart --name=" Version 7 Tests " -p chrome
96
+ dart test test/v7_test .dart --name=" UuidV7 " -p chrome
97
97
98
98
# Run on specific browsers
99
99
dart test -p chrome,firefox
@@ -106,13 +106,13 @@ For debugging in the browser:
106
106
107
107
``` bash
108
108
# Basic debugging - pauses for you to connect DevTools
109
- dart test test/uuid_test .dart -p chrome --pause-after-load
109
+ dart test test/v4_test .dart -p chrome --pause-after-load
110
110
111
111
# Debug a specific test group
112
- dart test test/uuid_test .dart --name=" Version 7 Tests " -p chrome --pause-after-load --timeout=10x
112
+ dart test test/v7_test .dart --name=" UuidV7 " -p chrome --pause-after-load --timeout=10x
113
113
114
114
# Debug a specific test with extended timeout
115
- dart test test/uuid_test .dart --name=" UUID v7 has mathematically sufficient random bits " -p chrome --pause-after-load --timeout=10x
115
+ dart test test/v7_test .dart --name=" Direct UuidV7 Class Tests " -p chrome --pause-after-load --timeout=10x
116
116
```
117
117
118
118
This will open Chrome and pause execution, allowing you to use Chrome DevTools for debugging.
0 commit comments