UNPKG

332 BJavaScriptView Raw
1/**
2 * Test for parseClientUrl.
3 * Runs with mocha.
4 */
5'use strict'
6
7const parseClientUrl = require('../lib/helpers/parseClientUrl')
8const { ok, equal } = require('assert')
9
10describe('parse-client-url', () => {
11 before(() => {
12 })
13
14 after(() => {
15 })
16
17 it('Do test', () => {
18
19 })
20})
21
22/* global describe, before, after, it */