Skip to content

Commit

Permalink
chore: code format
Browse files Browse the repository at this point in the history
  • Loading branch information
martinadamsdev committed Jun 27, 2024
1 parent b2d0d8e commit 1ca76d1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: ["@vue/cli-plugin-babel/preset"]
presets: ["@vue/cli-plugin-babel/preset"],
};
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
preset: "@vue/cli-plugin-unit-jest"
preset: "@vue/cli-plugin-unit-jest",
};
4 changes: 2 additions & 2 deletions src/components/HelloWorld.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@
export default {
name: "HelloWorld",
props: {
msg: String
}
msg: String,
},
};
</script>

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/example.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe("HelloWorld.vue", () => {
it("renders props.msg when passed", () => {
const msg = "new message";
const wrapper = shallowMount(HelloWorld, {
propsData: { msg }
propsData: { msg },
});
expect(wrapper.text()).toMatch(msg);
});
Expand Down

0 comments on commit 1ca76d1

Please sign in to comment.