More tests, better functionality, the server serves the dashboard now on configurable ports. websocket stuff fixed, though I dont think data is really being sent / recieved...
This commit is contained in:
@@ -20,7 +20,7 @@ void main() {
|
||||
longestStreak: 15,
|
||||
),
|
||||
recentActivity: [],
|
||||
timestamp: DateTime.now().millisecondsSinceEpoch,
|
||||
timestamp: DateTime.now(),
|
||||
);
|
||||
|
||||
// Build the widget
|
||||
@@ -76,7 +76,7 @@ void main() {
|
||||
longestStreak: 1,
|
||||
),
|
||||
recentActivity: [],
|
||||
timestamp: DateTime.now().millisecondsSinceEpoch,
|
||||
timestamp: DateTime.now(),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(
|
||||
@@ -106,7 +106,7 @@ void main() {
|
||||
longestStreak: 1,
|
||||
),
|
||||
recentActivity: [],
|
||||
timestamp: DateTime.now().millisecondsSinceEpoch,
|
||||
timestamp: DateTime.now(),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(
|
||||
|
||||
@@ -20,7 +20,7 @@ void main() {
|
||||
longestStreak: 15,
|
||||
),
|
||||
recentActivity: [],
|
||||
timestamp: DateTime.now().millisecondsSinceEpoch,
|
||||
timestamp: DateTime.now(),
|
||||
);
|
||||
|
||||
// Build the widget
|
||||
@@ -68,7 +68,7 @@ void main() {
|
||||
longestStreak: 200,
|
||||
),
|
||||
recentActivity: [],
|
||||
timestamp: DateTime.now().millisecondsSinceEpoch,
|
||||
timestamp: DateTime.now(),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(
|
||||
|
||||
Reference in New Issue
Block a user