We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a868b commit 009df2eCopy full SHA for 009df2e
.travis.yml
@@ -5,6 +5,8 @@ cache: yarn
5
6
script:
7
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
8
+ - yarn prettier
9
+ - yarn test
10
- yarn build
11
- cd ./packages/docs
12
- yarn install
packages/core/tests/index.spec.js
@@ -6,6 +6,6 @@ import toJson from "enzyme-to-json";
describe("core component", () => {
test("will render", () => {
const cmp = shallow(<HelloWorld />);
- expect(toJson((cmp))).toMatchSnapshot();
+ expect(toJson(cmp)).toMatchSnapshot();
});
0 commit comments