Skip to content

Commit ce61a75

Browse files
lots of progress. but why do the tests fail in concurrency mode?
1 parent f84b972 commit ce61a75

23 files changed

+154
-208
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121

2222
- name: Install dependencies
2323
run: npm ci
24-
24+
2525
- name: Run tests
2626
run: npm run test

extension.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ function executeCommand(commandInput, componentPath) {
208208
* @returns
209209
*/
210210
export function startOnMainThread(options = {}) {
211-
212211
const config = resolveConfig(options);
213212

214213
logger.debug('Next.js Extension Configuration:', JSON.stringify(config, undefined, 2));

fixtures/next-13/app/layout.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ export const metadata = {
55
export default function RootLayout({ children }) {
66
return (
77
<html>
8-
<body>
9-
{children}
10-
</body>
8+
<body>{children}</body>
119
</html>
1210
);
1311
}

fixtures/next-13/next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = {};
1+
module.exports = {};

fixtures/next-13/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"lint": "next lint"
99
},
1010
"dependencies": {
11-
"@harperdb/nextjs": "file:/harperdb-nextjs",
11+
"@harperdb/nextjs": "file:/@harperdb/nextjs",
1212
"next": "13.5.7"
1313
}
14-
}
15-
14+
}

fixtures/next-14/app/layout.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ export const metadata = {
55
export default function RootLayout({ children }) {
66
return (
77
<html>
8-
<body>
9-
{children}
10-
</body>
8+
<body>{children}</body>
119
</html>
1210
);
1311
}

fixtures/next-14/next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = {};
1+
module.exports = {};

fixtures/next-14/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lint": "next lint"
99
},
1010
"dependencies": {
11-
"@harperdb/nextjs": "file:/harperdb-nextjs",
11+
"@harperdb/nextjs": "file:/@harperdb/nextjs",
1212
"react": "^18",
1313
"react-dom": "^18",
1414
"next": "14.2.18"

fixtures/next-15/app/layout.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ export const metadata = {
55
export default function RootLayout({ children }) {
66
return (
77
<html>
8-
<body>
9-
{children}
10-
</body>
8+
<body>{children}</body>
119
</html>
1210
);
1311
}

fixtures/next-15/next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = {};
1+
module.exports = {};

0 commit comments

Comments
 (0)