Skip to content

Commit 4f33d4b

Browse files
committed
Skip flaky firebase_performance driver tests
1 parent 530a43a commit 4f33d4b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

packages/firebase_performance/example/test_driver/firebase_performance.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ void main() {
6969

7070
testTrace.incrementMetric('metric', 45);
7171
expect(testTrace.getMetric('metric'), completion(59));
72-
});
72+
}, skip: true);
7373

7474
test('setMetric', () {
7575
testTrace.start();
7676

7777
testTrace.setMetric('metric2', 37);
7878
expect(testTrace.getMetric('metric2'), completion(37));
79-
});
79+
}, skip: true);
8080

8181
test('putAttribute', () {
8282
testTrace.putAttribute('apple', 'sauce');
@@ -86,7 +86,7 @@ void main() {
8686
testTrace.getAttributes(),
8787
completion(<String, String>{'apple': 'sauce', 'banana': 'pie'}),
8888
);
89-
});
89+
}, skip: true);
9090

9191
test('removeAttribute', () {
9292
testTrace.putAttribute('sponge', 'bob');
@@ -97,7 +97,7 @@ void main() {
9797
testTrace.getAttributes(),
9898
completion(<String, String>{'patrick': 'star'}),
9999
);
100-
});
100+
}, skip: true);
101101

102102
test('getAttributes', () {
103103
testTrace.putAttribute('yugi', 'oh');
@@ -114,7 +114,7 @@ void main() {
114114
completion(<String, String>{'yugi': 'oh'}),
115115
);
116116
});
117-
});
117+
}, skip: true);
118118

119119
group('$HttpMetric', () {
120120
HttpMetric testMetric;
@@ -138,7 +138,7 @@ void main() {
138138
testMetric.getAttributes(),
139139
completion(<String, String>{'apple': 'sauce', 'banana': 'pie'}),
140140
);
141-
});
141+
}, skip: true);
142142

143143
test('removeAttribute', () {
144144
testMetric.putAttribute('sponge', 'bob');
@@ -149,7 +149,7 @@ void main() {
149149
testMetric.getAttributes(),
150150
completion(<String, String>{'patrick': 'star'}),
151151
);
152-
});
152+
}, skip: true);
153153

154154
test('getAttributes', () {
155155
testMetric.putAttribute('yugi', 'oh');
@@ -165,7 +165,7 @@ void main() {
165165
testMetric.getAttributes(),
166166
completion(<String, String>{'yugi': 'oh'}),
167167
);
168-
});
168+
}, skip: true);
169169

170170
test('http setters shouldn\'t cause a crash', () async {
171171
testMetric.start();

0 commit comments

Comments
 (0)