Update param2Obj.spec.js

This commit is contained in:
MaYuanhai 2020-04-13 11:33:31 +08:00 committed by GitHub
parent ceb70e95f6
commit 32ad600d33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,13 +1,14 @@
import { param2Obj } from '@/utils/index.js' import { param2Obj } from '@/utils/index.js'
describe('Utils:param2Obj', () => { describe('Utils:param2Obj', () => {
const url = 'https://github.com/PanJiaChen/vue-element-admin?name=bill&age=29&sex=1&field=dGVzdA==' const url = 'https://github.com/PanJiaChen/vue-element-admin?name=bill&age=29&sex=1&field=dGVzdA==&key=%E6%B5%8B%E8%AF%95'
it('param2Obj test', () => { it('param2Obj test', () => {
expect(param2Obj(url)).toEqual({ expect(param2Obj(url)).toEqual({
name: 'bill', name: 'bill',
age: '29', age: '29',
sex: '1', sex: '1',
field: window.btoa('test') field: window.btoa('test'),
key: '测试'
}) })
}) })
}) })