@@ -69,14 +69,14 @@ void main() {
69
69
70
70
testTrace.incrementMetric ('metric' , 45 );
71
71
expect (testTrace.getMetric ('metric' ), completion (59 ));
72
- });
72
+ }, skip : true );
73
73
74
74
test ('setMetric' , () {
75
75
testTrace.start ();
76
76
77
77
testTrace.setMetric ('metric2' , 37 );
78
78
expect (testTrace.getMetric ('metric2' ), completion (37 ));
79
- });
79
+ }, skip : true );
80
80
81
81
test ('putAttribute' , () {
82
82
testTrace.putAttribute ('apple' , 'sauce' );
@@ -86,7 +86,7 @@ void main() {
86
86
testTrace.getAttributes (),
87
87
completion (< String , String > {'apple' : 'sauce' , 'banana' : 'pie' }),
88
88
);
89
- });
89
+ }, skip : true );
90
90
91
91
test ('removeAttribute' , () {
92
92
testTrace.putAttribute ('sponge' , 'bob' );
@@ -97,7 +97,7 @@ void main() {
97
97
testTrace.getAttributes (),
98
98
completion (< String , String > {'patrick' : 'star' }),
99
99
);
100
- });
100
+ }, skip : true );
101
101
102
102
test ('getAttributes' , () {
103
103
testTrace.putAttribute ('yugi' , 'oh' );
@@ -114,7 +114,7 @@ void main() {
114
114
completion (< String , String > {'yugi' : 'oh' }),
115
115
);
116
116
});
117
- });
117
+ }, skip : true );
118
118
119
119
group ('$HttpMetric ' , () {
120
120
HttpMetric testMetric;
@@ -138,7 +138,7 @@ void main() {
138
138
testMetric.getAttributes (),
139
139
completion (< String , String > {'apple' : 'sauce' , 'banana' : 'pie' }),
140
140
);
141
- });
141
+ }, skip : true );
142
142
143
143
test ('removeAttribute' , () {
144
144
testMetric.putAttribute ('sponge' , 'bob' );
@@ -149,7 +149,7 @@ void main() {
149
149
testMetric.getAttributes (),
150
150
completion (< String , String > {'patrick' : 'star' }),
151
151
);
152
- });
152
+ }, skip : true );
153
153
154
154
test ('getAttributes' , () {
155
155
testMetric.putAttribute ('yugi' , 'oh' );
@@ -165,7 +165,7 @@ void main() {
165
165
testMetric.getAttributes (),
166
166
completion (< String , String > {'yugi' : 'oh' }),
167
167
);
168
- });
168
+ }, skip : true );
169
169
170
170
test ('http setters shouldn\' t cause a crash' , () async {
171
171
testMetric.start ();
0 commit comments