We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fastboot-info
1 parent eb34190 commit 765afb9Copy full SHA for 765afb9
1 file changed
test/fastboot-test.js
@@ -353,4 +353,16 @@ describe("FastBoot", function() {
353
.catch((e) => expect(e).to.be.an('error'));
354
});
355
356
+ it("matches app's fastboot-info and result's fastboot-info", function() {
357
+ var fastboot = new FastBoot({
358
+ distPath: fixture('basic-app')
359
+ });
360
+
361
+ return fastboot.visit('/')
362
+ .then((r) => {
363
+ let lookupFastboot = r.instance.lookup('info:-fastboot');
364
+ expect(r._fastbootInfo).to.deep.equal(lookupFastboot);
365
366
367
368
0 commit comments