Skip to content

Commit c27955e

Browse files
committed
fix(core): upgrade deps and reenable test
1 parent 6ff5e50 commit c27955e

File tree

4 files changed

+69
-128
lines changed

4 files changed

+69
-128
lines changed

package-lock.json

Lines changed: 60 additions & 119 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"core-js": "^3.6.4",
1919
"todomvc-app-css": "^2.3.0",
2020
"uuid": "^7.0.3",
21-
"vue": "^3.0.0-alpha.12",
21+
"vue": "^3.0.0-beta.1",
2222
"vuex": "^4.0.0-alpha.1"
2323
},
2424
"devDependencies": {
@@ -27,7 +27,7 @@
2727
"@vue/cli-plugin-eslint": "^4.3.1",
2828
"@vue/cli-plugin-unit-mocha": "^4.3.1",
2929
"@vue/cli-service": "^4.3.1",
30-
"@vue/compiler-sfc": "^3.0.0-alpha.12",
30+
"@vue/compiler-sfc": "^3.0.0-beta.1",
3131
"@vue/test-utils": "2.0.0-alpha.1",
3232
"babel-eslint": "^10.1.0",
3333
"chai": "^4.2.0",
@@ -37,12 +37,12 @@
3737
"eslint-plugin-jsx-a11y": "^6.2.3",
3838
"eslint-plugin-prettier": "^3.1.2",
3939
"eslint-plugin-react": "^7.19.0",
40-
"eslint-plugin-react-hooks": "^2.5.0",
40+
"eslint-plugin-react-hooks": "^3.0.0",
4141
"eslint-plugin-vue": "^6.2.2",
42-
"prettier": "^1.19.1",
42+
"prettier": "^2.0.4",
4343
"sinon": "^9.0.1",
4444
"sinon-chai": "^3.5.0",
45-
"vue-cli-plugin-vue-next": "0.1.0",
45+
"vue-cli-plugin-vue-next": "0.1.1",
4646
"vue-template-compiler": "^2.6.11"
4747
},
4848
"postcss": {

src/components/item/item.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('Item', () => {
2323
expect(wrapper.find('li').classes()).to.contain('completed');
2424
});
2525

26-
it.skip('should notify about remove button', () => {
26+
it('should notify about remove button', () => {
2727
const wrapper = mount(Item, {
2828
props: {
2929
todo: { id: 'e2bb892a-844a-47fb-a2b3-47f491af9d88', name: 'Demo', completed: false }

tests/e2e/specs/new-todo.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ describe('New todo', () => {
33
cy.visit('/');
44
cy.contains('h1', 'todos');
55

6-
cy.get('.new-todo')
7-
.type('Demo')
8-
.type('{enter}');
6+
const newTodo = cy.get('.new-todo');
7+
newTodo.type('Demo');
8+
newTodo.type('{enter}');
99

1010
cy.get('.main .todo-list .view').contains('Demo');
1111
});

0 commit comments

Comments
 (0)