我正在编写在本地可以正常运行的单元测试,但在Jenkins中失败,并出现以下错误:
import "brace/mode/yaml";
<AceEditor
focus
style={{ width: "100%" }}
mode="yaml"
theme="github"
name="template_file"
ref="editorInput"
onChange={this.props.input.onChange}
value={this.props.input.value}
fontSize={20}
showPrintMargin
showGutter={true}
highlightActiveLine
setOptions={{
showLineNumbers: true,
tabSize: 2
}}
editorProps={{ $blockScrolling: true }}
/>
我无法确定自己的版本出了什么问题。