Remove tlsConfig from the settings code

This commit is contained in:
Johannes Zellner
2018-01-31 18:27:31 +01:00
parent 9b21167a8d
commit 0b31568c14
3 changed files with 1 additions and 50 deletions

View File

@@ -91,21 +91,6 @@ describe('Settings', function () {
});
});
it('can set tls config', function (done) {
settings.setTlsConfig({ provider: 'caas' }, function (error) {
expect(error).to.be(null);
done();
});
});
it('can get tls config', function (done) {
settings.getTlsConfig(function (error, dnsConfig) {
expect(error).to.be(null);
expect(dnsConfig.provider).to.be('caas');
done();
});
});
it('can set backup config', function (done) {
nock(config.apiServerOrigin())
.post(`/api/v1/boxes/${DOMAIN_0}/awscredentials?token=TOKEN`)