Skip to content

Commit 2de50b2

Browse files
committed
fix: run lint+format
1 parent 4179707 commit 2de50b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ npm install vite-web-test-runner-plugin --save-dev
1010

1111
```js
1212
// web-test-runner.config.js
13-
const vite = require('vite-web-test-runner-plugin');
13+
const vite = require("vite-web-test-runner-plugin");
1414

1515
module.exports = {
1616
plugins: [vite()],

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = function () {
1212
});
1313
await server.listen();
1414
const port = server.config.server.port;
15-
const protocol = server.config.server.https ? "https" : "http"
15+
const protocol = server.config.server.https ? "https" : "http";
1616
app.use((ctx, next) => {
1717
ctx.redirect(`${protocol}://localhost:${port}${ctx.originalUrl}`);
1818
return;

0 commit comments

Comments
 (0)