Skip to content

Commit 737c46c

Browse files
committed
..
1 parent fcaa823 commit 737c46c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

e2e/self-hosting-hive/gateway.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const hiveUrl = process.env['HIVE_URL']!;
55
export const gatewayConfig = defineConfig({
66
reporting: {
77
type: 'hive',
8+
debug: true,
89
agent: {
910
maxRetries: 1,
1011
maxSize: 1,
@@ -16,4 +17,5 @@ export const gatewayConfig = defineConfig({
1617
usageEndpoint: `${hiveUrl}/usage`,
1718
},
1819
},
20+
logging: 'debug',
1921
});

e2e/self-hosting-hive/self-hosting-hive.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('Self Hosting Hive', () => {
6060
/\[hiveSupergraphFetcher\] GET .* succeeded with status 200/,
6161
);
6262
expect(gwLogs).toMatch(
63-
/\[useHiveConsole\] \[hive\]\[usage\] POST .* succeeded with status 200/,
63+
/\[useHiveConsole\] \[hive\]\[usage\]\[agent\] POST .* succeeded with status 200/,
6464
);
6565
});
6666
});

vitest.config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ import { isNotPlatform } from './internal/env/src/node';
99
// packages as per the Node resolution spec.
1010
//
1111
// Vite will process inlined modules.
12-
const inline = [/@graphql-mesh\/.*/, /@omnigraph\/.*/, /@graphql-hive\/signal/];
12+
const inline = [
13+
/@graphql-mesh\/.*/,
14+
/@omnigraph\/.*/,
15+
/@graphql-hive\/core/,
16+
/@graphql-hive\/yoga/,
17+
];
1318

1419
export default defineConfig({
1520
plugins: [tsconfigPaths()],

0 commit comments

Comments
 (0)