12345678910111213141516171819202122232425262728 |
- 'use strict'
- const { RuntimeApi } = require('@joystream/storage-runtime-api')
- describe('RuntimeApi', () => {
- it('can be created', async () => {
- const api = await RuntimeApi.create()
- api.disconnect()
- })
- })
|