Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2022-03-14 18:19:51 +0300
committerJoas Schilling <coding@schilljs.com>2022-03-21 14:08:27 +0300
commit28693f2e9286f768978c3150f28a6ff7e8de005a (patch)
tree836c3d89e394162b53298bb17090cf7d1747c465 /src/store
parentae36a5a501ded1f992f4757773248d24fe631531 (diff)
Fix some tests
Signed-off-by: marco <marcoambrosini@pm.me>
Diffstat (limited to 'src/store')
-rw-r--r--src/store/messagesStore.spec.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/store/messagesStore.spec.js b/src/store/messagesStore.spec.js
index 354d5e579..f7d715aee 100644
--- a/src/store/messagesStore.spec.js
+++ b/src/store/messagesStore.spec.js
@@ -313,6 +313,7 @@ describe('messagesStore', () => {
token: TOKEN,
isReplyable: false,
sendingFailure: '',
+ reactions: {},
referenceId: expect.stringMatching(/^[a-zA-Z0-9]{64}$/),
})
})
@@ -345,6 +346,7 @@ describe('messagesStore', () => {
token: TOKEN,
isReplyable: false,
sendingFailure: '',
+ reactions: {},
referenceId: expect.stringMatching(/^[a-zA-Z0-9]{64}$/),
parent: 123,
})
@@ -389,6 +391,7 @@ describe('messagesStore', () => {
token: TOKEN,
isReplyable: false,
sendingFailure: '',
+ reactions: {},
referenceId: expect.stringMatching(/^[a-zA-Z0-9]{64}$/),
})
})
@@ -418,6 +421,7 @@ describe('messagesStore', () => {
token: TOKEN,
isReplyable: false,
sendingFailure: '',
+ reactions: {},
referenceId: expect.stringMatching(/^[a-zA-Z0-9]{64}$/),
}])
@@ -440,6 +444,7 @@ describe('messagesStore', () => {
token: TOKEN,
isReplyable: false,
sendingFailure: '',
+ reactions: {},
referenceId: expect.stringMatching(/^[a-zA-Z0-9]{64}$/),
}])
})
@@ -473,6 +478,7 @@ describe('messagesStore', () => {
token: TOKEN,
isReplyable: false,
sendingFailure: 'failure-reason',
+ reactions: {},
referenceId: expect.stringMatching(/^[a-zA-Z0-9]{64}$/),
}])
})
@@ -518,6 +524,7 @@ describe('messagesStore', () => {
token: TOKEN,
isReplyable: false,
sendingFailure: '',
+ reactions: {},
referenceId: expect.stringMatching(/^[a-zA-Z0-9]{64}$/),
}])
})