浏览代码

test(types): assert props are readonly

Evan You 6 年之前
父节点
当前提交
a5f962ab8e
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      test-dts/createComponent.test-d.tsx

+ 3 - 0
test-dts/createComponent.test-d.tsx

@@ -50,6 +50,9 @@ describe('with object props', () => {
       expectType<ExpectedProps['ccc']>(props.ccc)
       expectType<ExpectedProps['ddd']>(props.ddd)
 
+      // props should be readonly
+      expectError((props.a = 1))
+
       // setup context
       return {
         c: ref(1),