Use new dev pacakge to update credentials for automated testing (#306)

* Use new dev pacakge to update credentials for automated testing

* Revert long running test flag back
This commit is contained in:
Nathan 2022-03-07 11:42:57 -08:00 коммит произвёл GitHub
Родитель fb8ec41f96
Коммит da2cfc7eda
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
7 изменённых файлов: 520 добавлений и 520 удалений

Просмотреть файл

@ -3,10 +3,10 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { gulp_installAzureAccount, gulp_installResourceGroups, gulp_webpack } from '@microsoft/vscode-azext-dev';
import * as fse from 'fs-extra';
import * as gulp from 'gulp';
import * as path from 'path';
import { gulp_installAzureAccount, gulp_installResourceGroups, gulp_webpack } from 'vscode-azureextensiondev';
declare let exports: { [key: string]: unknown };

1028
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -277,6 +277,7 @@
},
"devDependencies": {
"@microsoft/eslint-config-azuretools": "^0.1.0",
"@microsoft/vscode-azext-dev": "^0.1.2",
"@types/fs-extra": "^8.1.1",
"@types/gulp": "^4.0.8",
"@types/mocha": "^8.2.2",
@ -295,7 +296,6 @@
"ts-node": "^7.0.1",
"typescript": "^4.3.5",
"vsce": "^1.87.1",
"vscode-azureextensiondev": "^0.10.4",
"vscode-test": "^1.5.2",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0"

Просмотреть файл

@ -4,9 +4,9 @@
*--------------------------------------------------------------------------------------------*/
import { } from '@microsoft/vscode-azext-azureutils';
import { TestOutputChannel, TestUserInput } from '@microsoft/vscode-azext-dev';
import { } from '@microsoft/vscode-azext-utils';
import * as vscode from 'vscode';
import { TestOutputChannel, TestUserInput } from 'vscode-azureextensiondev';
import { ext, registerOnActionStartHandler } from '../extension.bundle';
export let longRunningTestsEnabled: boolean;

Просмотреть файл

@ -4,8 +4,8 @@
*--------------------------------------------------------------------------------------------*/
import { OperatingSystemType } from "@azure/arm-compute";
import { createTestActionContext, runWithTestActionContext } from "@microsoft/vscode-azext-dev";
import * as assert from "assert";
import { createTestActionContext, runWithTestActionContext } from "vscode-azureextensiondev";
import { createVirtualMachine, createVirtualMachineAdvanced, getRandomHexString, ImageListStep } from "../../extension.bundle";
import { longRunningTestsEnabled } from "../global.test";
import { getRotatingLocation } from "./getRotatingValue";

Просмотреть файл

@ -5,8 +5,8 @@
import { ComputeManagementClient } from '@azure/arm-compute';
import { ResourceManagementClient } from '@azure/arm-resources';
import { createTestActionContext, TestAzureAccount } from '@microsoft/vscode-azext-dev';
import * as vscode from 'vscode';
import { createTestActionContext, TestAzureAccount } from 'vscode-azureextensiondev';
import { AzExtTreeDataProvider, AzureAccountTreeItem, createAzureClient, createComputeClient, ext, ISubscriptionContext } from '../../extension.bundle';
import { longRunningTestsEnabled } from '../global.test';

Просмотреть файл

@ -10,7 +10,7 @@
// See https://github.com/Microsoft/vscode-azuretools/wiki/webpack for guidance
const process = require('process');
const dev = require("vscode-azureextensiondev");
const dev = require("@microsoft/vscode-azext-dev");
let DEBUG_WEBPACK = !/^(false|0)?$/i.test(process.env.DEBUG_WEBPACK || '');