Skip to content

Commit f5da91b

Browse files
author
Nicholas Case
committed
Merge branch 'candidate' into release
2 parents 429622a + b904e5a commit f5da91b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const defaultConfig = {
3838
"custom-font-url": null,
3939
},
4040
digitrust: {
41-
redirects: true
41+
redirects: false
4242
}
4343
};
4444

src/lib/config.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('config', () => {
99
expect(config.css['font-family']).to.equal('MonoType');
1010
expect(config.css['color-primary']).to.equal('#0a82be');
1111
config.update({ digitrust: { some: 'prop' }});
12-
expect(config.digitrust.redirects).to.be.true;
12+
expect(config.digitrust.redirects).to.be.false;
1313
});
1414

1515
it('.copy returns new object containing config values', () => {

0 commit comments

Comments
 (0)