We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50e565b commit 4b7fb81Copy full SHA for 4b7fb81
packages/compass-e2e-tests/helpers/buildinfo.ts
@@ -5,7 +5,11 @@ import assert from 'node:assert/strict';
5
const commonKeys = ['productName'];
6
type CommonBuildInfo = Record<typeof commonKeys[number], string>;
7
8
-function assertObjectHasKeys(obj: unknown, name: string, keys: readonly string[]) {
+function assertObjectHasKeys(
9
+ obj: unknown,
10
+ name: string,
11
+ keys: readonly string[]
12
+) {
13
assert(
14
typeof obj === 'object' && obj !== null,
15
'Expected buildInfo to be an object'
0 commit comments