Skip to content

Commit 08f163b

Browse files
authored
Merge pull request #7 from eremannisto/publish
Release `v.1.0.0`
2 parents fa11038 + 0049f9e commit 08f163b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

assets/banner.alt.png

1.72 MB
Loading

assets/banner.png

1.24 MB
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mannisto/astro-metadata",
3-
"version": "1.0.0-beta.7",
3+
"version": "1.0.0",
44
"description": "Astro components for managing your page head — metadata, social sharing, favicons, and SEO.",
55
"license": "MIT",
66
"type": "module",

playwright.config.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
import { defineConfig } from "@playwright/test"
22

3+
const ports = {
4+
basic: 4321,
5+
}
6+
37
export default defineConfig({
48
testDir: "./tests/e2e",
59
outputDir: "./tests/e2e/results",
610
webServer: {
711
command: "pnpm astro dev",
812
cwd: "./tests/e2e/fixtures/basic",
9-
port: 4321,
13+
port: ports.basic,
1014
reuseExistingServer: !process.env.CI,
1115
},
1216
use: {
13-
baseURL: "http://localhost:4321",
17+
baseURL: `http://localhost:${ports.basic}`,
1418
},
1519
})

0 commit comments

Comments
 (0)