()
| 123 | }; |
| 124 | |
| 125 | const openPortSchema = (): Yup.AnyObjectSchema => |
| 126 | Yup.object({ |
| 127 | port: Yup.number().required().min(9).max(65535), |
| 128 | share_level: Yup.string().required().oneOf(WorkspaceAppSharingLevels), |
| 129 | }); |
| 130 | |
| 131 | interface PortForwardPopoverViewProps { |
| 132 | host: string; |
no test coverage detected