We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b9978 commit f9dd422Copy full SHA for f9dd422
packages/firestore/test/unit/api/blob.test.ts
@@ -31,6 +31,12 @@ describe('Blob', () => {
31
'AP8A/w==': [0, 255, 0, 255]
32
};
33
34
+ // DO NOT MERGE.
35
+ // For demonstration of error messages only.
36
+ it('yifany --- this case is intended to fail', () => {
37
+ expect(true).to.equal(false);
38
+ });
39
+
40
it('constructs values from Base64', () => {
41
Object.keys(base64Mappings).forEach(base64Str => {
42
const blob = Blob.fromBase64String(base64Str);
0 commit comments