浏览代码

Restore test sample

Alexandru Dima 3 年之前
父节点
当前提交
8c6103a3b4
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      monaco-editor-webpack-plugin/test/index.js

+ 2 - 2
monaco-editor-webpack-plugin/test/index.js

@@ -1,6 +1,6 @@
 import * as monaco from 'monaco-editor/esm/vs/editor/editor.api';
 
 monaco.editor.create(document.getElementById('container'), {
-	value: '',
-	language: 'html'
+	value: 'console.log("Hello, world")',
+	language: 'javascript'
 });