chore: add pubsub example tests (#850)

This commit is contained in:
Vasco Santos
2021-02-10 21:00:40 +01:00
committed by GitHub
parent b1079474de
commit f6a4cad827
4 changed files with 115 additions and 0 deletions

11
examples/pubsub/test.js Normal file
View File

@ -0,0 +1,11 @@
'use strict'
const test1 = require('./test-1')
const testMessageFiltering = require('./message-filtering/test')
async function test() {
await test1()
await testMessageFiltering()
}
module.exports = test