Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: upgrade to webpack-dev-server v4 #6669

Merged
merged 15 commits into from
Sep 15, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: remove redundant logs
  • Loading branch information
haoqunjiang committed Sep 3, 2021
commit 1f169c3d2004b43eb3154b734b5a2dfb353bdd43
1 change: 0 additions & 1 deletion packages/@vue/cli-service/__tests__/serve.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ test('use a single websocket connection for HMR', async () => {
const msg = `Welcome to Your Vue.js App`
expect(await helpers.getText('h1')).toMatch(msg)

console.log(requestUrls)
expect(requestUrls.filter(url => url.includes('ws://')).length).toBe(1)
}
)
Expand Down
1 change: 0 additions & 1 deletion packages/@vue/cli-test-utils/launchPuppeteer.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ module.exports = async function launchPuppeteer (url) {
await f12.send('Page.enable')

f12.on('Network.webSocketCreated', ({ requestId, url: wsUrl }) => {
console.error('web socket created', requestId, wsUrl)
requestUrls.push(wsUrl)
})

Expand Down