Sfoglia il codice sorgente

Restore test sample

Alexandru Dima 3 anni fa
parent
commit
8c6103a3b4
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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'
 });