Skip to content

Commit 6af7b29

Browse files
authored
fix: cleanup old package name and domain references found in health check (#40)
1 parent 6eccf24 commit 6af7b29

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/wiki/Home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FlutterProbe Wiki
22

3-
Welcome to the FlutterProbe wiki. This documentation covers architecture details, development guides, and operational procedures that complement the main docs at [flutterprobe.com](https://flutterprobe.dev).
3+
Welcome to the FlutterProbe wiki. This documentation covers architecture details, development guides, and operational procedures that complement the main docs at [flutterprobe.dev](https://flutterprobe.dev).
44

55
## Quick Links
66

vscode/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Sidebar tree view of all tests and recipes in your workspace:
100100

101101
```bash
102102
# macOS / Linux
103-
curl -fsSL https://flutterprobe.com/install.sh | sh
103+
curl -fsSL https://flutterprobe.dev/install.sh | sh
104104

105105
# Or build from source
106106
git clone https://github.com/AlphaWaveSystems/flutter-probe.git
@@ -120,7 +120,7 @@ dependencies:
120120
3. Initialize the agent in your `main.dart`:
121121

122122
```dart
123-
import 'package:probe_agent/probe_agent.dart';
123+
import 'package:flutter_probe_agent/flutter_probe_agent.dart';
124124
125125
void main() {
126126
ProbeAgent.start(); // Only active in debug/profile builds

website/src/content/docs/blog/guide-to-flutter-e2e-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Three primary options exist for Flutter E2E testing:
3535
Install the FlutterProbe CLI:
3636

3737
```bash
38-
curl -sSL https://get.flutterprobe.com | sh
38+
curl -sSL https://flutterprobe.dev/install | sh
3939
```
4040

4141
Add the FlutterProbe Dart agent to your app's dev dependencies:

website/src/content/docs/comparisons/flutter-test-automation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
flutter-version: '3.27.0'
5353
- name: Install FlutterProbe
5454
run: |
55-
curl -sSL https://get.flutterprobe.com | sh
55+
curl -sSL https://flutterprobe.dev/install | sh
5656
- name: Build and test
5757
run: |
5858
flutter build apk --debug

0 commit comments

Comments
 (0)