Skip to content

Commit b467f9b

Browse files
authored
Merge pull request #208 from ember-fastboot/fix-tests
Fix to run all tests
2 parents 8dc7404 + 3cc767b commit b467f9b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

test/fastboot-dependencies-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const path = require('path');
66
const fixture = require('./helpers/fixture-path');
77
const FastBoot = require('./../src/index');
88

9-
describe.only("FastBoot with dependencies", function() {
9+
describe("FastBoot with dependencies", function() {
1010
it("it works with dependencies", function() {
1111
var fastboot = new FastBoot({
1212
distPath: fixture('app-with-dependencies')

test/result-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ describe('Result', function() {
2121
});
2222

2323
it('constructor', function () {
24-
expect(result).to.be.an.instanceOf(Result);
25-
expect(result._doc).to.be.an.instanceOf(SimpleDOM.Document);
24+
expect(result).to.be.a('object');
25+
expect(result._doc).to.be.a('object');
2626
expect(result._html).to.be.a('string');
2727
expect(result._fastbootInfo).to.be.an.instanceOf(FastBootInfo);
2828
});
@@ -225,7 +225,7 @@ describe('Result', function() {
225225
beforeEach(function () {
226226
doc.head.appendChild(doc.createRawHTMLSection(HEAD));
227227
doc.body.appendChild(doc.createRawHTMLSection(BODY));
228-
228+
229229
result._finalize();
230230
});
231231

0 commit comments

Comments
 (0)