File tree 3 files changed +5
-10
lines changed
packages/cloud_firestore/cloud_firestore_web
3 files changed +5
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.1.0+3
2
+
3
+ - Removed unit test that was only testing dart-lang behavior.
4
+
1
5
## 0.1.0+2
2
6
3
7
- Update documentation about this package being the endorsed platform for web.
Original file line number Diff line number Diff line change 1
1
name : cloud_firestore_web
2
2
description : The web implementation of cloud_firestore
3
3
homepage : https://github.com/FirebaseExtended/flutterfire/tree/master/packages/cloud_firestore/cloud_firestore_web
4
- version : 0.1.0+2
4
+ version : 0.1.0+3
5
5
6
6
flutter :
7
7
plugin :
Original file line number Diff line number Diff line change @@ -35,15 +35,6 @@ void main() {
35
35
expect (actualDouble.data, isInstanceOf< web.FieldValue > ());
36
36
});
37
37
38
- test (
39
- "increment throws when attempting to increment something that is not a number" ,
40
- () {
41
- expect (() {
42
- dynamic malformed = "nope" ;
43
- factory .increment (malformed);
44
- }, throwsA (isA <TypeError >()));
45
- });
46
-
47
38
test ("serverTimestamp" , () {
48
39
final FieldValueWeb actual = factory .serverTimestamp ();
49
40
expect (actual.data, isInstanceOf< web.FieldValue > ());
You can’t perform that action at this time.
0 commit comments