12 lines
423 B
JavaScript
12 lines
423 B
JavaScript
import { describe } from 'mocha'
|
|
import { expect } from 'chai';
|
|
import { getInitialRoomDossier } from './cb.js'
|
|
|
|
describe('cb', function () {
|
|
describe('getInitialRoomDossier', function () {
|
|
it('should return json', async function () {
|
|
const dossier = await getInitialRoomDossier('https://chaturbate.com/projektmelody')
|
|
expect(dossier).to.have.property('wschat_host')
|
|
})
|
|
})
|
|
}) |