Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Features Test Cmd: "Duplicate" test mode to test Feature Idempotence #553

Merged
merged 12 commits into from
Jun 20, 2023
Prev Previous commit
Next Next commit
update test to use the correct flag
  • Loading branch information
joshspicer committed Jun 15, 2023
commit 409ea120bcaba964a3db8317a59e9afa4070287a
4 changes: 2 additions & 2 deletions src/test/container-features/featuresCLICommands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,12 @@ describe('CLI features subcommands', async function () {
assert.isTrue(result.stdout.includes('Ciao, vscode?????'));
});

it('succeeds --skip-autogenerated and subset of features and --skip-duplicate-test', async function () {
it('succeeds --skip-autogenerated and subset of features and --skip-duplicated', async function () {
const collectionFolder = `${__dirname}/example-v2-features-sets/simple`;
let success = false;
let result: ExecResult | undefined = undefined;
try {
result = await shellExec(`${cli} features test -f color --skip-autogenerated --skip-duplicate-test --log-level trace ${collectionFolder}`);
result = await shellExec(`${cli} features test -f color --skip-autogenerated --skip-duplicated --log-level trace ${collectionFolder}`);
success = true;

} catch (error) {
Expand Down
Loading