File tree Expand file tree Collapse file tree
packages/rxdb-db-collection/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -282,13 +282,13 @@ describe(`RxDB Integration`, () => {
282282 } )
283283
284284 describe ( `error handling` , ( ) => {
285- it ( `should rollback the transaction on invalid data that does not match the RxCollection schema` , async ( ) => {
285+ it . skip ( `should rollback the transaction on invalid data that does not match the RxCollection schema` , async ( ) => {
286286 const initialItems = getTestData ( 2 )
287287 const { collection, db } = await createTestState ( initialItems )
288288
289289 // INSERT
290290 await expect ( async ( ) => {
291- const tx = await collection . insert ( {
291+ const tx = collection . insert ( {
292292 id : `3` ,
293293 name : `invalid` ,
294294 foo : `bar` ,
@@ -299,7 +299,7 @@ describe(`RxDB Integration`, () => {
299299
300300 // UPDATE
301301 await expect ( async ( ) => {
302- const tx = await collection . update ( `2` , ( d ) => {
302+ const tx = collection . update ( `2` , ( d ) => {
303303 d . name = `invalid`
304304 d . foo = `bar`
305305 } )
You can’t perform that action at this time.
0 commit comments