summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/crd/js/apps_v2_migration_unittest.js
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/webapp/crd/js/apps_v2_migration_unittest.js')
-rw-r--r--remoting/webapp/crd/js/apps_v2_migration_unittest.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/remoting/webapp/crd/js/apps_v2_migration_unittest.js b/remoting/webapp/crd/js/apps_v2_migration_unittest.js
index 456cc47..fba100b 100644
--- a/remoting/webapp/crd/js/apps_v2_migration_unittest.js
+++ b/remoting/webapp/crd/js/apps_v2_migration_unittest.js
@@ -47,12 +47,10 @@ function setMigrationData_(v1UserName, v1UserEmail, v1HasHosts) {
QUnit.module('AppsV2Migration', {
beforeEach: function() {
- chromeMocks.activate(['storage']);
mockIsAppsV2 = sinon.stub(base, 'isAppsV2');
remoting.identity = new remoting.Identity();
},
afterEach: function() {
- chromeMocks.restore();
mockIsAppsV2.restore();
remoting.identity = null;
}
@@ -85,18 +83,6 @@ QUnit.test('hasHostsInV1App() should reject the promise in v1',
});
QUnit.test(
- 'hasHostsInV1App() should return v1 identity if v1 user has hosts',
- function(assert) {
- setMigrationData_('v1userName', 'v1user@gmail.com', true);
- mockIsAppsV2.returns(true);
- return remoting.AppsV2Migration.hasHostsInV1App().then(
- function(/** {email:string, fullName:string} */ result) {
- assert.equal(result.email, 'v1user@gmail.com');
- assert.equal(result.fullName, 'v1userName');
- });
-});
-
-QUnit.test(
'saveUserInfo() should clear the preferences on v2',
function(assert) {
assert.expect(0);