From 84ce0a3ba5d1f7c114f6a622d2e0008b4b6ef899 Mon Sep 17 00:00:00 2001 From: Neevash Ramdial Date: Thu, 2 Jul 2020 17:58:44 -0400 Subject: [PATCH] update widget test prefix --- README.md | 2 +- snippets/snippets.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8de7664..ab1cb42 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Awesome Flutter Snippets is a collection of commonly used Flutter classes and me | `tweenAnimationBuilder` | Tween Animation Builder | Widget builder that animates a property of a Widget to a target value whenever the target value changes. | `valueListenableBuilder` | Value Listenable Builder | Given a ValueListenable and a builder which builds widgets from concrete values of T, this class will automatically register itself as a listener of the ValueListenable and call the builder with updated values when the value changes. | `f-test` | Test | Create a test function. -| `f-testWidgets` | Test Widgets | Create a testWidgets function. +| `widgetTest` | Test Widgets | Create a testWidgets function.
diff --git a/snippets/snippets.json b/snippets/snippets.json index 11bddbd..a55ea68 100644 --- a/snippets/snippets.json +++ b/snippets/snippets.json @@ -445,7 +445,7 @@ "description": "Create a test function" }, "Test Widgets": { - "prefix": "f-testWidgets", + "prefix": "widgetTest", "body": [ "testWidgets(", " \"${1:test description}\",",