This commit is contained in:
Norbert de Langen 2017-04-16 15:40:44 +02:00
parent 5c042e5390
commit a803c856b3
4 changed files with 6 additions and 4 deletions

View File

@ -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"

View File

@ -3,6 +3,7 @@ cache:
yarn: true
directories:
- node_modules
- .jest
notifications:
email: false
node_js:

View File

@ -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"
}

View File

@ -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);