Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sqlitecloud/drivers",
"version": "1.0.529",
"version": "1.0.573",
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions test/pubsub.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { SQLiteCloudRow } from '../src'
import { getChinookDatabase, LONG_TIMEOUT } from './shared'
import { PUBSUB_ENTITY_TYPE } from '../src/drivers/pubsub'

describe('pubSub', () => {
describe.skip('pubSub', () => {
it(
'should listen, notify and receive pubSub messages on channel',
async () => {
Expand Down Expand Up @@ -135,7 +135,7 @@ describe('pubSub', () => {
expect(error).toBeNull()

expect(results).not.toBeNull()
expect(results['payload'][0]['type']).toEqual('UPDATE')
expect(results['payload'][0]['sqlite_type']).toEqual('UPDATE')
expect(results['payload'][0]['Name']).toEqual(newName)
expect(data).toEqual({ pippo: 'pluto' })
callbackCalled = true
Expand Down
Loading