提交 3cfc98f7 编写于 作者: C Christof Marti

Skip test on Linux (#35046)

上级 70f61972
......@@ -5,10 +5,16 @@
'use strict';
import * as assert from 'assert';
import * as platform from 'vs/base/common/platform';
suite('Keytar', () => {
test('loads and is functional', done => {
if (platform.isLinux) {
// Skip test due to set up issue with Travis.
done();
return;
}
(async () => {
const keytar = await import('keytar');
await keytar.setPassword('VSCode Test', 'foo', 'bar');
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册