Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 8443341

Browse files
committed
deprecate __moduleAddress
1 parent ad072eb commit 8443341

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

test/loader/moduleName.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
export var name = __moduleName;
2-
export var address = __moduleAddress;
1+
export var name = __moduleName;

test/system.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,6 @@ describe('System', function () {
346346
System.import('test/loader/moduleName.js')
347347
.then(function (m) {
348348
expect(m.name).to.be.equal(m.address);
349-
expect(m.address).to.be.equal(baseURL + 'test/loader/moduleName.js');
350349
})
351350
.then(done, done);
352351
});

0 commit comments

Comments
 (0)