3.0 source code
This commit is contained in:
30
OfficeWeb/vendor/requirejs/tests/mapConfig/mapConfigStarAdapter-tests.js
vendored
Normal file
30
OfficeWeb/vendor/requirejs/tests/mapConfig/mapConfigStarAdapter-tests.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
/*global doh */
|
||||
require({
|
||||
baseUrl: './',
|
||||
map: {
|
||||
'*': {
|
||||
'd': 'adapter/d'
|
||||
},
|
||||
'adapter/d': {
|
||||
d: 'd'
|
||||
}
|
||||
}
|
||||
},
|
||||
['e', 'adapter/d'],
|
||||
function(e, adapterD) {
|
||||
'use strict';
|
||||
doh.register(
|
||||
'mapConfigStarAdapter',
|
||||
[
|
||||
function mapConfigStarAdapter(t){
|
||||
t.is('e', e.name);
|
||||
t.is('d', e.d.name);
|
||||
t.is(true, e.d.adapted);
|
||||
t.is(true, adapterD.adapted);
|
||||
t.is('d', adapterD.name);
|
||||
}
|
||||
]
|
||||
);
|
||||
doh.run();
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user