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 4c40084 commit 0badeffCopy full SHA for 0badeff
packages/firestore/test/unit/api/timestamp.test.ts
@@ -36,10 +36,13 @@ describe('Timestamp', () => {
36
37
it('_toISOString', () => {
38
expect(new Timestamp(0, 1001)._toISOString()).to.equal(
39
- '1970-01-01T00:00:00.000001001Z');
+ '1970-01-01T00:00:00.000001001Z'
40
+ );
41
expect(new Timestamp(0, 1000)._toISOString()).to.equal(
- '1970-01-01T00:00:00.000001000Z');
42
+ '1970-01-01T00:00:00.000001000Z'
43
44
expect(new Timestamp(1570664492, 537000000)._toISOString()).to.equal(
- '2019-10-09T23:41:32.537000000Z');
45
+ '2019-10-09T23:41:32.537000000Z'
46
47
});
48
0 commit comments