chore: add peer and content routing example tests (#848)

This commit is contained in:
Vasco Santos
2021-02-08 11:03:42 +01:00
committed by GitHub
parent aec8e3d3bb
commit a150ea60c5
4 changed files with 94 additions and 0 deletions

View File

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