Fix config tests to match the removal of zoneName and repurpose of fqdn

This commit is contained in:
Johannes Zellner
2018-01-29 10:11:09 +01:00
parent b2363271aa
commit c95de547eb
2 changed files with 3 additions and 5 deletions

View File

@@ -33,7 +33,6 @@ describe('config', function () {
it('did set default values', function () {
expect(config.fqdn()).to.equal('');
expect(config.adminFqdn()).to.equal('');
expect(config.zoneName()).to.equal('');
expect(config.adminLocation()).to.equal('my');
});
@@ -56,7 +55,7 @@ describe('config', function () {
});
it('set - object', function (done) {
config.set( { fqdn: 'something.com' } );
config.set( { adminDomain: 'something.com' } );
expect(config.fqdn()).to.eql('something.com');
done();
});
@@ -68,7 +67,6 @@ describe('config', function () {
expect(config.fqdn()).to.equal('example.com');
expect(config.adminFqdn()).to.equal('my.example.com');
expect(config.adminOrigin()).to.equal('https://my.example.com');
expect(config.zoneName()).to.equal('example.com');
});
it('uses hyphen locations with non-custom domain', function () {
@@ -78,7 +76,6 @@ describe('config', function () {
expect(config.fqdn()).to.equal('test.example.com');
expect(config.adminLocation()).to.equal('my');
expect(config.adminOrigin()).to.equal('https://my-test.example.com');
expect(config.zoneName()).to.equal('example.com');
});
it('can set arbitrary values', function (done) {