chore: add protocol and stream muxing example tests (#849)

This commit is contained in:
Vasco Santos
2021-02-10 15:40:19 +01:00
committed by GitHub
parent a150ea60c5
commit b1079474de
5 changed files with 126 additions and 0 deletions

View File

@ -0,0 +1,13 @@
'use strict'
const test1 = require('./test-1')
const test2 = require('./test-2')
const test3 = require('./test-3')
async function test() {
await test1()
await test2()
await test3()
}
module.exports = test