Skip to content

Commit d695e28

Browse files
committed
Add sample to test to avoid CI/CD break
1 parent e67e300 commit d695e28

File tree

2 files changed

+8
-50
lines changed

2 files changed

+8
-50
lines changed

pubspec.lock

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
11
# Generated by pub
22
# See https://dart.dev/tools/pub/glossary#lockfile
33
packages:
4-
archive:
5-
dependency: transitive
6-
description:
7-
name: archive
8-
url: "https://pub.dartlang.org"
9-
source: hosted
10-
version: "2.0.13"
11-
args:
12-
dependency: transitive
13-
description:
14-
name: args
15-
url: "https://pub.dartlang.org"
16-
source: hosted
17-
version: "1.6.0"
184
async:
195
dependency: transitive
206
description:
@@ -43,20 +29,6 @@ packages:
4329
url: "https://pub.dartlang.org"
4430
source: hosted
4531
version: "1.14.12"
46-
convert:
47-
dependency: transitive
48-
description:
49-
name: convert
50-
url: "https://pub.dartlang.org"
51-
source: hosted
52-
version: "2.1.1"
53-
crypto:
54-
dependency: transitive
55-
description:
56-
name: crypto
57-
url: "https://pub.dartlang.org"
58-
source: hosted
59-
version: "2.1.4"
6032
flutter:
6133
dependency: "direct main"
6234
description: flutter
@@ -67,13 +39,6 @@ packages:
6739
description: flutter
6840
source: sdk
6941
version: "0.0.0"
70-
image:
71-
dependency: transitive
72-
description:
73-
name: image
74-
url: "https://pub.dartlang.org"
75-
source: hosted
76-
version: "2.1.12"
7742
json_utilities:
7843
dependency: "direct main"
7944
description:
@@ -102,13 +67,6 @@ packages:
10267
url: "https://pub.dartlang.org"
10368
source: hosted
10469
version: "1.6.4"
105-
petitparser:
106-
dependency: transitive
107-
description:
108-
name: petitparser
109-
url: "https://pub.dartlang.org"
110-
source: hosted
111-
version: "2.4.0"
11270
quiver:
11371
dependency: transitive
11472
description:
@@ -177,12 +135,5 @@ packages:
177135
url: "https://pub.dartlang.org"
178136
source: hosted
179137
version: "2.0.8"
180-
xml:
181-
dependency: transitive
182-
description:
183-
name: xml
184-
url: "https://pub.dartlang.org"
185-
source: hosted
186-
version: "3.6.1"
187138
sdks:
188139
dart: ">=2.6.0 <3.0.0"

test/json_table_test.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
void main() {}
1+
import 'package:flutter_test/flutter_test.dart';
2+
3+
void main() {
4+
test('abc', () {
5+
int aa = 2;
6+
expect(aa, 2);
7+
});
8+
}

0 commit comments

Comments
 (0)