Skip to content

Commit 0303a3a

Browse files
authored
Merge pull request #165 from pjonsson/test-routing-on
Test with routing on option
2 parents d8deb11 + de4f681 commit 0303a3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/single-page-routing.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ describe('single-page-routing', function() {
127127
});
128128
});
129129
it('should resolve an actual html file', function() {
130-
request(buildApp(routingOffOptions))
130+
request(buildApp(routingOnOptions))
131131
.get('/actual-html-file.html')
132132
.expect(200)
133133
.expect('Content-Type', /html/)
@@ -136,7 +136,7 @@ describe('single-page-routing', function() {
136136
});
137137
});
138138
it('should resolve an actual json file', function() {
139-
request(buildApp(routingOffOptions))
139+
request(buildApp(routingOnOptions))
140140
.get('/actual-json.json')
141141
.expect(200)
142142
.expect('Content-Type', /json/)

0 commit comments

Comments
 (0)