diff --git a/package.json b/package.json index 6d8e4114..613efaed 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,8 @@ "build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib", "build:changelog": "vant-cli changelog", "upload:weapp": "node build/upload.js", - "test": "jest" + "test": "jest", + "test:watch": "jest --watch" }, "files": [ "dist", diff --git a/packages/switch/index.wxml b/packages/switch/index.wxml index d45829bd..4e9789ba 100644 --- a/packages/switch/index.wxml +++ b/packages/switch/index.wxml @@ -3,13 +3,13 @@ diff --git a/packages/switch/index.wxs b/packages/switch/index.wxs index 1fb6530c..3ae387a2 100644 --- a/packages/switch/index.wxs +++ b/packages/switch/index.wxs @@ -3,7 +3,7 @@ var style = require('../wxs/style.wxs'); var addUnit = require('../wxs/add-unit.wxs'); function rootStyle(data) { - var currentColor = data.checked ? data.activeColor : data.inactiveColor; + var currentColor = data.checked === data.activeValue ? data.activeColor : data.inactiveColor; return style({ 'font-size': addUnit(data.size), @@ -15,7 +15,7 @@ var BLUE = '#1989fa'; var GRAY_DARK = '#969799'; function loadingColor(data) { - return data.checked + return data.checked === data.activeValue ? data.activeColor || BLUE : data.inactiveColor || GRAY_DARK; } diff --git a/packages/switch/test/__snapshots__/index.spec.ts.snap b/packages/switch/test/__snapshots__/index.spec.ts.snap new file mode 100644 index 00000000..f54c6b12 --- /dev/null +++ b/packages/switch/test/__snapshots__/index.spec.ts.snap @@ -0,0 +1,25 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`switch should allow to custom active-value and inactive-value 1`] = ` + + + +`; + +exports[`switch should allow to custom active-value and inactive-value 2`] = ` + + + +`; diff --git a/packages/switch/test/index.spec.ts b/packages/switch/test/index.spec.ts new file mode 100644 index 00000000..c982d5ff --- /dev/null +++ b/packages/switch/test/index.spec.ts @@ -0,0 +1,50 @@ +import path from 'path'; +import simulate from 'miniprogram-simulate'; + +describe('switch', () => { + const VanSwitch = simulate.load( + path.resolve(__dirname, '../../switch/index'), + 'van-switch', + { + rootPath: path.resolve(__dirname, '../../'), + } + ); + + test('should allow to custom active-value and inactive-value', async () => { + const comp = simulate.render( + simulate.load({ + usingComponents: { + 'van-switch': VanSwitch, + }, + template: ` + + `, + data: { + checked: 'on', + }, + methods: { + onChange({ detail }) { + this.setData({ checked: detail }); + }, + }, + }) + ); + comp.attach(document.createElement('parent-wrapper')); + + const wrapper = comp.querySelector('#wrapper'); + const btn = wrapper?.querySelector('.van-switch'); + expect((btn as any).toJSON()).toMatchSnapshot(); + btn?.dispatchEvent('tap'); + await simulate.sleep(10); + expect((btn as any).toJSON()).toMatchSnapshot(); + expect(comp.data.checked).toEqual('off'); + }); +});