@@ -163,7 +163,7 @@ module('Integration | card-basics', function (hooks) {
163
163
</template>
164
164
};
165
165
}
166
- await shimModule(`${testRealmURL}test-cards`, { Post, Person }, loader );
166
+ loader. shimModule(`${testRealmURL}test-cards`, { Post, Person });
167
167
168
168
let helloWorld = new Post({
169
169
title: 'First Post',
@@ -413,7 +413,7 @@ module('Integration | card-basics', function (hooks) {
413
413
};
414
414
}
415
415
416
- await shimModule(`${testRealmURL}test-cards`, { Guest, Person }, loader );
416
+ loader. shimModule(`${testRealmURL}test-cards`, { Guest, Person });
417
417
418
418
let g1 = new Guest({
419
419
name: 'Madeleine',
@@ -470,7 +470,7 @@ module('Integration | card-basics', function (hooks) {
470
470
class Person extends CardDef {
471
471
@field firstName = contains(StringField);
472
472
}
473
- await shimModule(`${testRealmURL}test-cards`, { Person }, loader );
473
+ loader. shimModule(`${testRealmURL}test-cards`, { Person });
474
474
475
475
// deserialize a card with an ID to mark it as "saved"
476
476
let card = new Person({ firstName: 'Mango' });
@@ -782,7 +782,7 @@ module('Integration | card-basics', function (hooks) {
782
782
@field firstName = contains(StringField);
783
783
@field pet = linksTo(Pet);
784
784
}
785
- await shimModule(`${testRealmURL}test-cards`, { Person, Pet }, loader );
785
+ loader. shimModule(`${testRealmURL}test-cards`, { Person, Pet });
786
786
787
787
let mango = new Pet({
788
788
firstName: 'Mango',
@@ -879,7 +879,7 @@ module('Integration | card-basics', function (hooks) {
879
879
@field firstName = contains(StringField);
880
880
@field pets = linksToMany(Pet);
881
881
}
882
- await shimModule(`${testRealmURL}test-cards`, { Person, Pet }, loader );
882
+ loader. shimModule(`${testRealmURL}test-cards`, { Person, Pet });
883
883
884
884
let mango = new Pet({
885
885
firstName: 'Mango',
@@ -967,7 +967,7 @@ module('Integration | card-basics', function (hooks) {
967
967
// @ts-expect-error Have to purposefully bypass type-checking in order to get into this runtime error state
968
968
@field pet = linksTo(StringField);
969
969
}
970
- await shimModule(`${testRealmURL}test-cards`, { Person }, loader );
970
+ loader. shimModule(`${testRealmURL}test-cards`, { Person });
971
971
972
972
try {
973
973
new Person({ firstName: 'Hassan', pet: 'Mango' });
@@ -1006,11 +1006,7 @@ module('Integration | card-basics', function (hooks) {
1006
1006
@field firstName = contains(StringField);
1007
1007
@field pet = linksTo(Pet);
1008
1008
}
1009
- await shimModule(
1010
- `${testRealmURL}test-cards`,
1011
- { Person, Pet, NotAPet },
1012
- loader,
1013
- );
1009
+ loader.shimModule(`${testRealmURL}test-cards`, { Person, Pet, NotAPet });
1014
1010
1015
1011
let door = new NotAPet({ firstName: 'door' });
1016
1012
try {
@@ -1060,7 +1056,7 @@ module('Integration | card-basics', function (hooks) {
1060
1056
</template>
1061
1057
};
1062
1058
}
1063
- await shimModule(`${testRealmURL}test-cards`, { Person, Pet }, loader );
1059
+ loader. shimModule(`${testRealmURL}test-cards`, { Person, Pet });
1064
1060
1065
1061
let vanGogh = new Pet({ firstName: 'Van Gogh' });
1066
1062
let mango = new Pet({ firstName: 'Mango', friend: vanGogh });
@@ -1149,7 +1145,7 @@ module('Integration | card-basics', function (hooks) {
1149
1145
</template>
1150
1146
};
1151
1147
}
1152
- await shimModule(`${testRealmURL}test-cards`, { Post, Person }, loader );
1148
+ loader. shimModule(`${testRealmURL}test-cards`, { Post, Person });
1153
1149
1154
1150
let helloWorld = new Post({
1155
1151
author: new Person({
@@ -1196,16 +1192,12 @@ module('Integration | card-basics', function (hooks) {
1196
1192
</template>
1197
1193
};
1198
1194
}
1199
- await shimModule(
1200
- `${testRealmURL}test-cards`,
1201
- {
1202
- Post,
1203
- Person,
1204
- TestNumber,
1205
- TestString,
1206
- },
1207
- loader,
1208
- );
1195
+ loader.shimModule(`${testRealmURL}test-cards`, {
1196
+ Post,
1197
+ Person,
1198
+ TestNumber,
1199
+ TestString,
1200
+ });
1209
1201
1210
1202
let helloWorld = new Post({
1211
1203
author: new Person({ firstName: 'Arthur', number: 10 }),
@@ -1234,7 +1226,7 @@ module('Integration | card-basics', function (hooks) {
1234
1226
@field title = contains(title);
1235
1227
@field author = contains(Person);
1236
1228
}
1237
- await shimModule(`${testRealmURL}test-cards`, { Post, Person }, loader );
1229
+ loader. shimModule(`${testRealmURL}test-cards`, { Post, Person });
1238
1230
1239
1231
let helloWorld = new Post({
1240
1232
title: 'First Post',
@@ -1260,7 +1252,7 @@ module('Integration | card-basics', function (hooks) {
1260
1252
},
1261
1253
});
1262
1254
}
1263
- await shimModule(`${testRealmURL}test-cards`, { Person }, loader );
1255
+ loader. shimModule(`${testRealmURL}test-cards`, { Person });
1264
1256
let helloWorld = new Person({
1265
1257
firstName: 'Arthur',
1266
1258
lastName: 'M',
@@ -1300,7 +1292,7 @@ module('Integration | card-basics', function (hooks) {
1300
1292
</template>
1301
1293
};
1302
1294
}
1303
- await shimModule(`${testRealmURL}test-cards`, { Person }, loader );
1295
+ loader. shimModule(`${testRealmURL}test-cards`, { Person });
1304
1296
let helloWorld = new Person({ firstName: 'Arthur', age: 10 });
1305
1297
1306
1298
await renderCard(loader, helloWorld, 'atom');
@@ -1376,7 +1368,7 @@ module('Integration | card-basics', function (hooks) {
1376
1368
</template>
1377
1369
};
1378
1370
}
1379
- await shimModule(`${testRealmURL}test-cards`, { Family, Person }, loader );
1371
+ loader. shimModule(`${testRealmURL}test-cards`, { Family, Person });
1380
1372
1381
1373
let abdelRahmans = new Family({
1382
1374
people: [
@@ -1452,7 +1444,7 @@ module('Integration | card-basics', function (hooks) {
1452
1444
</template>
1453
1445
};
1454
1446
}
1455
- await shimModule(`${testRealmURL}test-cards`, { Family, Person }, loader );
1447
+ loader. shimModule(`${testRealmURL}test-cards`, { Family, Person });
1456
1448
1457
1449
let abdelRahmans = new Family({
1458
1450
people: [
@@ -1498,7 +1490,7 @@ module('Integration | card-basics', function (hooks) {
1498
1490
</template>
1499
1491
};
1500
1492
}
1501
- await shimModule(`${testRealmURL}test-cards`, { Family, Person }, loader );
1493
+ loader. shimModule(`${testRealmURL}test-cards`, { Family, Person });
1502
1494
let mango = new Person({
1503
1495
firstName: 'Mango',
1504
1496
});
@@ -1559,16 +1551,12 @@ module('Integration | card-basics', function (hooks) {
1559
1551
};
1560
1552
}
1561
1553
1562
- await shimModule(
1563
- `${testRealmURL}test-cards`,
1564
- {
1565
- Person,
1566
- Employee,
1567
- Customer,
1568
- Group,
1569
- },
1570
- loader,
1571
- );
1554
+ loader.shimModule(`${testRealmURL}test-cards`, {
1555
+ Person,
1556
+ Employee,
1557
+ Customer,
1558
+ Group,
1559
+ });
1572
1560
1573
1561
let group = new Group({
1574
1562
people: [
@@ -1708,7 +1696,7 @@ module('Integration | card-basics', function (hooks) {
1708
1696
@field firstName = contains(StringField);
1709
1697
@field languagesSpoken = containsMany(StringField);
1710
1698
}
1711
- await shimModule(`${testRealmURL}test-cards`, { Person }, loader );
1699
+ loader. shimModule(`${testRealmURL}test-cards`, { Person });
1712
1700
assert.throws(
1713
1701
() => new Person({ languagesSpoken: 'english' }),
1714
1702
/Expected array for field value languagesSpoken/,
@@ -1735,7 +1723,7 @@ module('Integration | card-basics', function (hooks) {
1735
1723
@field title = contains(StringField);
1736
1724
@field author = contains(Person);
1737
1725
}
1738
- await shimModule(`${testRealmURL}test-cards`, { Post, Person }, loader );
1726
+ loader. shimModule(`${testRealmURL}test-cards`, { Post, Person });
1739
1727
1740
1728
let helloWorld = new Post({
1741
1729
title: 'My Post',
@@ -1777,7 +1765,7 @@ module('Integration | card-basics', function (hooks) {
1777
1765
},
1778
1766
});
1779
1767
}
1780
- await shimModule(`${testRealmURL}test-cards`, { Person }, loader );
1768
+ loader. shimModule(`${testRealmURL}test-cards`, { Person });
1781
1769
1782
1770
let mango = new Person({ firstName: 'Mango', isCool: true });
1783
1771
let root = await renderCard(loader, mango, 'isolated');
@@ -1797,7 +1785,7 @@ module('Integration | card-basics', function (hooks) {
1797
1785
@field isCool = contains(BooleanField);
1798
1786
@field isHuman = contains(BooleanField);
1799
1787
}
1800
- await shimModule(`${testRealmURL}test-cards`, { Person }, loader );
1788
+ loader. shimModule(`${testRealmURL}test-cards`, { Person });
1801
1789
let mango = new Person({
1802
1790
firstName: 'Mango',
1803
1791
isCool: true,
@@ -1903,7 +1891,7 @@ module('Integration | card-basics', function (hooks) {
1903
1891
</template>
1904
1892
};
1905
1893
}
1906
- await shimModule(`${testRealmURL}test-cards`, { Post, Person }, loader );
1894
+ loader. shimModule(`${testRealmURL}test-cards`, { Post, Person });
1907
1895
1908
1896
let helloWorld = new Post({
1909
1897
title: 'First Post',
@@ -2199,11 +2187,7 @@ module('Integration | card-basics', function (hooks) {
2199
2187
@field favoritePlaces = linksToMany(Country);
2200
2188
}
2201
2189
2202
- await shimModule(
2203
- `${testRealmURL}test-cards`,
2204
- { Country, ContactCard },
2205
- loader,
2206
- );
2190
+ loader.shimModule(`${testRealmURL}test-cards`, { Country, ContactCard });
2207
2191
2208
2192
let us = new Country({ countryName: 'United States', flag: '🇺🇸' });
2209
2193
let canada = new Country({ countryName: 'Canada', flag: '🇨🇦' });
0 commit comments