chore: move libs only used in browser out of common (#31780)
This commit is contained in:
parent
4c4ed6c705
commit
18cc33055d
7 changed files with 8 additions and 8 deletions
|
@ -2,7 +2,7 @@ import { expect } from 'chai';
|
|||
|
||||
describe('feature-string parsing', () => {
|
||||
it('is indifferent to whitespace around keys and values', () => {
|
||||
const { parseCommaSeparatedKeyValue } = require('../lib/common/parse-features-string');
|
||||
const { parseCommaSeparatedKeyValue } = require('../lib/browser/parse-features-string');
|
||||
const checkParse = (string: string, parsed: Record<string, string | boolean>) => {
|
||||
const features = parseCommaSeparatedKeyValue(string);
|
||||
expect(features).to.deep.equal(parsed);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue