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 checkParse = (string: string, parsed: Record) => { const features = parseCommaSeparatedKeyValue(string, true).parsed; expect(features).to.deep.equal(parsed); }; checkParse('a=yes,c=d', { a: true, c: 'd' }); checkParse('a=yes ,c=d', { a: true, c: 'd' }); checkParse('a=yes, c=d', { a: true, c: 'd' }); checkParse('a=yes , c=d', { a: true, c: 'd' }); checkParse(' a=yes , c=d', { a: true, c: 'd' }); checkParse(' a= yes , c=d', { a: true, c: 'd' }); checkParse(' a = yes , c=d', { a: true, c: 'd' }); checkParse(' a = yes , c =d', { a: true, c: 'd' }); checkParse(' a = yes , c = d', { a: true, c: 'd' }); checkParse(' a = yes , c = d ', { a: true, c: 'd' }); }); });