UNPKG

automizy-email-editor

Version:

Design mobile friendly HTML emails in your application.

25 lines (21 loc) 562 B
require(['one'], function (one) { define('nested', ['two'], function (two) { return { name: 'nested', two: two }; }); require(['nested'], function (nested) { doh.register( "nestedDefine2", [ function nestedDefine2(t) { t.is("one", one.name); t.is("two", nested.two.name); t.is("nested", nested.name); } ] ); doh.run(); }); });