@@ -261,7 +261,7 @@ describe('framework APIs', () => {
261
261
262
262
const instance = new Instance ( runtime )
263
263
framework . createInstance ( instance . id , `
264
- const moduleFoo = __weex_require_module__ ('foo')
264
+ const moduleFoo = weex.requireModule ('foo')
265
265
new Vue({
266
266
data: {
267
267
x: 'Hello'
@@ -361,9 +361,9 @@ describe('framework APIs', () => {
361
361
362
362
const instance = new Instance ( runtime )
363
363
framework . createInstance ( instance . id , `
364
- const moduleFoo = __weex_require_module__ ('foo')
365
- const moduleBar = __weex_require_module__ ('bar')
366
- const moduleBaz = __weex_require_module__ ('baz')
364
+ const moduleFoo = weex.requireModule ('foo')
365
+ const moduleBar = weex.requireModule ('bar')
366
+ const moduleBaz = weex.requireModule ('baz')
367
367
new Vue({
368
368
render: function (createElement) {
369
369
const value = []
@@ -592,7 +592,7 @@ describe('framework APIs', () => {
592
592
593
593
const instance = new Instance ( runtime )
594
594
framework . createInstance ( instance . id , `
595
- const moduleFoo = __weex_require_module__ ('foo')
595
+ const moduleFoo = weex.requireModule ('foo')
596
596
new Vue({
597
597
mounted: function () {
598
598
moduleFoo.a(a => a + 1)
@@ -624,7 +624,7 @@ describe('framework APIs', () => {
624
624
625
625
const instance = new Instance ( runtime )
626
626
framework . createInstance ( instance . id , `
627
- const moduleFoo = __weex_require_module__ ('foo')
627
+ const moduleFoo = weex.requireModule ('foo')
628
628
new Vue({
629
629
mounted: function () {
630
630
moduleFoo.a(this.$refs.x)
0 commit comments