@memlab/e2e 1.0.29 → 1.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,7 +9,7 @@
9
9
  "lint": "next lint"
10
10
  },
11
11
  "dependencies": {
12
- "next": "13.5.0",
12
+ "next": "14.1.1",
13
13
  "react": "18.2.0",
14
14
  "react-dom": "18.2.0"
15
15
  },
@@ -19,8 +19,7 @@ export default function Document() {
19
19
  rel="stylesheet"
20
20
  href="https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css"
21
21
  integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu"
22
- // eslint-disable-next-line react/no-unknown-property
23
- crossorigin="anonymous"
22
+ crossOrigin="anonymous"
24
23
  />
25
24
  </Head>
26
25
  <body>
@@ -17,17 +17,13 @@ export default function Home() {
17
17
  <div className="row">
18
18
  <div className="col-md-3">
19
19
  <Link href="/examples/detached-dom">
20
- <a>
21
- <h2>Example 1 &rarr;</h2>
22
- </a>
20
+ <h2>Example 1 &rarr;</h2>
23
21
  </Link>
24
22
  <p>Detached DOM element</p>
25
23
  </div>
26
24
  <div className="col-md-3">
27
25
  <Link href="/examples/oversized-object">
28
- <a>
29
- <h2>Example 2 &rarr;</h2>
30
- </a>
26
+ <h2>Example 2 &rarr;</h2>
31
27
  </Link>
32
28
  <p>Leaked event listener</p>
33
29
  </div>