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 1f25d55 commit 980d7a7Copy full SHA for 980d7a7
test/integration/index.spec.js
@@ -829,3 +829,12 @@ describe('/publications FOR ALL TABLES', () => {
829
assert.equal(stillExists, false)
830
})
831
832
+
833
+describe('/triggers', () => {
834
+ it('GET /triggers', async () => {
835
+ const res = await axios.get(`${URL}/triggers`)
836
+ const included = res.data.find((x) => `${x.schema}.${x.name}` === 'public.check_update')
837
+ assert.strictEqual(res.status, STATUS.SUCCESS)
838
+ assert.strictEqual(true, !!included)
839
+ })
840
+})
0 commit comments