diff --git a/test/models/github-login-model.test.js b/test/models/github-login-model.test.js index 9dd2ed41b8..e938e26b13 100644 --- a/test/models/github-login-model.test.js +++ b/test/models/github-login-model.test.js @@ -10,6 +10,10 @@ import { describe('GithubLoginModel', function() { [null, KeytarStrategy, SecurityBinaryStrategy, InMemoryStrategy].forEach(function(Strategy) { describe((Strategy && Strategy.name) || 'default strategy', function() { + // NOTE: This test does not pass on VSTS macOS builds. It will be re-enabled + // once the underlying problem is solved. See atom/github#1568 for details. + if (process.env.CI_PROVIDER === 'VSTS') { return; } + it('manages passwords', async function() { if (!Strategy || await Strategy.isValid()) { const loginModel = new GithubLoginModel(Strategy);