Skip to content

Commit 53937a1

Browse files
committed
upgrade dependencies
1 parent fd64b23 commit 53937a1

File tree

5 files changed

+7937
-5903
lines changed

5 files changed

+7937
-5903
lines changed

e2e/javascript/index.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
describe('Vue 3 Playground', () => {
22
it('should display playground text on page', () => {
33
cy.visit('/');
4-
cy.contains('h2', 'Vue 3.1.3 Playground');
4+
cy.contains('h2', 'Vue 3.2.33 Playground');
55
});
66
});

e2e/typescript/index.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
describe('Vue 3 Playground', () => {
22
it('should display playground text on page', () => {
33
cy.visit('/');
4-
cy.contains('h2', 'Vue 3.1.3 Playground');
4+
cy.contains('h2', 'Vue 3.2.33 Playground');
55
});
66
});

jest.unit.config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module.exports = {
88
transform: {
99
'^.+\\.js$': 'babel-jest',
1010
'^.+\\.ts$': 'ts-jest',
11-
'^.+\\.vue$': 'vue-jest'
12-
}
11+
'^.+\\.vue$': 'vue3-jest'
12+
},
13+
testEnvironment: 'jsdom'
1314
};

0 commit comments

Comments
 (0)