test(no-lifecycle-after-await): make tests more strict (#2898) #2056
CI.yml
on: push
Lint
43s
Test with ESLint v8
2m 10s
Test without ESLint Stylistic
2m 4s
Test with typescript-eslint v7
2m 7s
Matrix: Test with old ESLint Stylistic
Matrix: Test
Annotations
2 errors
Test with old ESLint Stylistic (3)
Process completed with exit code 1.
|
tests/lib/utils/ts-utils/index/get-component-emits.js > getComponentEmitsFromTypeDefineTypes > should return expected props with :<script setup lang="ts"> import { Emits } from './test'
defineEmits<Emits>() </script>:
tests/lib/utils/ts-utils/index/get-component-emits.js#L120
AssertionError:
[{"type":"unknown","name":null}]
===
[{"type":"infer-type","name":"a"},{"type":"infer-type","name":"b"},{"type":"infer-type","name":"c"}]
+ actual - expected
[
{
+ name: null,
+ type: 'unknown'
- name: 'a',
- type: 'infer-type'
- },
- {
- name: 'b',
- type: 'infer-type'
- },
- {
- name: 'c',
- type: 'infer-type'
}
]
- Expected
+ Received
[
{
- "name": "a",
- "type": "infer-type",
- },
- {
- "name": "b",
- "type": "infer-type",
- },
- {
- "name": "c",
- "type": "infer-type",
+ "name": null,
+ "type": "unknown",
},
]
❯ tests/lib/utils/ts-utils/index/get-component-emits.js:120:14
|