Skip to content

Commit b512bdf

Browse files
committed
⚰️ Removes only test flags
1 parent 5828e43 commit b512bdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/cli.up.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('Dev Containers CLI', function () {
2626

2727
describe('Command up', () => {
2828

29-
it.only('should execute successfully with valid config', async () => {
29+
it('should execute successfully with valid config', async () => {
3030
const res = await shellExec(`${cli} up --workspace-folder ${__dirname}/configs/image --include-configuration --include-merged-configuration`);
3131
const response = JSON.parse(res.stdout);
3232
assert.equal(response.outcome, 'success');
@@ -69,7 +69,7 @@ describe('Dev Containers CLI', function () {
6969
assert.equal(success, false, 'expect non-successful call');
7070
});
7171

72-
it.only('should succeed when run without a workspace-folder in a workspace root', async () => {
72+
it('should succeed when run without a workspace-folder in a workspace root', async () => {
7373
const res = await shellExec(`${cli} up`, { cwd: `${__dirname}/configs/image-with-features` });
7474
const response = JSON.parse(res.stdout);
7575
assert.equal(response.outcome, 'success');

0 commit comments

Comments
 (0)