Unskip two webview tests

These reliably pass locally for me
This commit is contained in:
Matt Bierner
2021-09-14 14:29:55 -07:00
parent 9e5ee5521a
commit 0db5f55854

View File

@@ -240,7 +240,7 @@ const testDocument = workspaceFile('bower.json');
});
test.skip('webviews should only be able to load resources from workspace by default', async () => {
test('webviews should only be able to load resources from workspace by default', async () => {
const webview = _register(vscode.window.createWebviewPanel(webviewId, 'title', {
viewColumn: vscode.ViewColumn.One
}, {
@@ -325,7 +325,7 @@ const testDocument = workspaceFile('bower.json');
}
});
test.skip('webviews using hard-coded old style vscode-resource uri should work', async () => {
test('webviews using hard-coded old style vscode-resource uri should work', async () => {
const webview = _register(vscode.window.createWebviewPanel(webviewId, 'title', { viewColumn: vscode.ViewColumn.One }, {
enableScripts: true,
localResourceRoots: [workspaceFile('sub')]