mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
FIX test
This commit is contained in:
parent
5c042e5390
commit
a803c856b3
3
.jestrc
3
.jestrc
@ -5,7 +5,8 @@
|
||||
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
|
||||
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
|
||||
},
|
||||
"modulePathIgnorePatterns": [
|
||||
"testPathIgnorePatterns": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"build",
|
||||
"examples"
|
||||
|
@ -3,6 +3,7 @@ cache:
|
||||
yarn: true
|
||||
directories:
|
||||
- node_modules
|
||||
- .jest
|
||||
notifications:
|
||||
email: false
|
||||
node_js:
|
||||
|
@ -20,7 +20,7 @@
|
||||
"scripts": {
|
||||
"postinstall": "lerna bootstrap --hoist",
|
||||
"lint": "eslint .",
|
||||
"test": "jest --config .jestrc",
|
||||
"test": "jest --config ./.jestrc",
|
||||
"test:watch": "npm test -- --watch",
|
||||
"test-examples": "CI=true lerna run test"
|
||||
}
|
||||
|
@ -6,7 +6,7 @@ describe('Panel', () => {
|
||||
it('should subscribe to setKnobs event of channel', () => {
|
||||
const testChannel = { on: jest.fn() };
|
||||
shallow(<Panel channel={testChannel} />);
|
||||
expect(testChannel.on).toHaveBeenCalledWith('addon:knobs:setKnobs');
|
||||
expect(testChannel.on).toHaveBeenCalledWith('addon:knobs:setKnobs', jasmine.any(Function));
|
||||
});
|
||||
|
||||
describe('setKnobs handler', () => {
|
||||
@ -125,7 +125,7 @@ describe('Panel', () => {
|
||||
type: 'text',
|
||||
};
|
||||
wrapper.instance().handleChange(testChangedKnob);
|
||||
expect(testChannel.emit.calledWith('addon:knobs:knobChange', testChangedKnob)).to.equal(true);
|
||||
expect(testChannel.emit).toHaveBeenCalledWith('addon:knobs:knobChange', testChangedKnob);
|
||||
|
||||
const paramsChange = { 'knob-foo': 'changed text' };
|
||||
expect(testApi.setQueryParams).toHaveBeenCalledWith(paramsChange);
|
||||
|
Loading…
x
Reference in New Issue
Block a user