remove oauth addon code

This commit is contained in:
Girish Ramakrishnan
2020-03-29 09:23:45 -07:00
parent 520a396ded
commit 85c3e45cde
2 changed files with 0 additions and 58 deletions

View File

@@ -184,27 +184,6 @@ describe('apptask', function () {
});
});
it('allocate OAuth credentials', function (done) {
addons._setupOauth(APP, {}, function (error) {
expect(error).to.be(null);
done();
});
});
it('remove OAuth credentials', function (done) {
addons._teardownOauth(APP, {}, function (error) {
expect(error).to.be(null);
done();
});
});
it('remove OAuth credentials twice succeeds', function (done) {
addons._teardownOauth(APP, {}, function (error) {
expect(!error).to.be.ok();
done();
});
});
it('barfs on empty manifest', function (done) {
var badApp = _.extend({ }, APP);
badApp.manifest = { };