Reenable working Enum tests
[mono-project.git] / sdks / wasm / runtime.js
blobb5cc6b85d2d26262a8da98089d9a239f19111199
2 var Module = { 
3         onRuntimeInitialized: function () {
4                 MONO.mono_load_runtime_and_bcl (
5                         config.vfs_prefix,
6                         config.deploy_prefix,
7                         config.enable_debugging,
8                         config.file_list,
9                         function () {
10                                 App.init ();
11                         }
12                 )
13         },