feat: improve ts.ValueExpression
conversion
#185
ci.yml
on: pull_request
build
45s
format
18s
lint
23s
Deploy
0s
Annotations
10 errors and 11 warnings
test/name-policy.test.tsx > is applied by output:
packages/core/test/name-policy.test.tsx#L16
Error: Render is incorrect
- Expected
+ Received
+
namehi
❯ test/name-policy.test.tsx:16:14
|
test/enum.test.tsx > renders an enum with enum children:
packages/typescript/test/enum.test.tsx#L17
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = 1,
bar = 2
}
❯ test/enum.test.tsx:17:5
|
test/enum.test.tsx > renders an enum with enum children specifying JS Value:
packages/typescript/test/enum.test.tsx#L35
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = "1",
bar = 2
}
❯ test/enum.test.tsx:35:5
|
test/enum.test.tsx > renders an enum given a JS value:
packages/typescript/test/enum.test.tsx#L55
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = 1,
bar = 2
}
❯ test/enum.test.tsx:55:5
|
test/enum.test.tsx > renders an enum given a JS value and children:
packages/typescript/test/enum.test.tsx#L77
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = 1,
bar = 2,
custom = "hello"
}
❯ test/enum.test.tsx:77:5
|
test/enum.test.tsx > uses the naming policy:
packages/typescript/test/enum.test.tsx#L100
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
fooProp = 1,
barProp = 2
}
❯ test/enum.test.tsx:100:5
|
test/enum.test.tsx > symbols > can reference enum members by refkey:
packages/typescript/test/enum.test.tsx#L123
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = "1",
bar = 2
}
MyEnum.foo;
❯ test/enum.test.tsx:123:7
|
test/values.test.tsx > symbols > can reference members:
packages/typescript/test/values.test.tsx#L177
Error: Render is incorrect
- Expected
+ Received
+
const refme = {
foo: "hello"
};
refme.foo
❯ test/values.test.tsx:177:18
|
test/values.test.tsx > symbols > can reference nested members:
packages/typescript/test/values.test.tsx#L206
Error: Render is incorrect
- Expected
+ Received
+
const refme = {
foo: {
bar: "hello";
}
};
refme.foo.bar
❯ test/values.test.tsx:206:18
|
test/values.test.tsx > symbols > can reference nested members in other source files:
packages/typescript/test/values.test.tsx#L241
Error: Render is incorrect
- Expected
+ Received
+
export const refme = {
foo: {
bar: "hello";
}
};
import { refme } from "./foo.js";
console.log(refme.foo.bar);
❯ test/values.test.tsx:241:18
|
format
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
lint
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
lint:
packages/core/src/debug.ts#L21
Unexpected console statement
|
lint:
packages/core/src/debug.ts#L24
Unexpected console statement
|
lint:
packages/core/src/debug.ts#L27
Unexpected console statement
|
lint:
packages/core/src/debug.ts#L80
Unexpected console statement
|
lint:
packages/core/test/components/slot.test.tsx#L60
Unexpected console statement
|
lint:
packages/core/test/components/slot.test.tsx#L117
Unexpected console statement
|
lint:
packages/core/test/components/slot.test.tsx#L171
Unexpected console statement
|
lint:
packages/core/test/components/source-file.test.tsx#L80
'tree' is assigned a value but never used. Allowed unused vars must match /^_/u
|
build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|