Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
badsyntax committed Mar 6, 2021
1 parent ad2aac6 commit 9efd6c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions extension/src/test/integration/gradle/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,12 @@ describe(getSuiteName('Extension'), () => {
assert.strictEqual(vscode.window.terminals.length, 3);
});

it.only('should generate 1 terminal per task with reuseTerminals: "task"', async () => {
it('should generate 1 terminal per task with reuseTerminals: "task"', async () => {
await vscode.workspace
.getConfiguration('gradle')
.update('reuseTerminals', 'task');
await executeAndWaitForTasks();
assert.strictEqual(vscode.window.terminals.length, 2);
console.log('FOO');
});

it('should generate 1 terminal for all tasks with reuseTerminals: "all"', async () => {
Expand Down
1 change: 0 additions & 1 deletion extension/src/test/unit/gradleTasks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ describe(getSuiteName('Gradle tasks'), () => {
let client: any;
let rootProjectsStore: RootProjectsStore;
beforeEach(async () => {
// const icons = new Icons(mockContext);
client = buildMockClient();
rootProjectsStore = new RootProjectsStore();

Expand Down

0 comments on commit 9efd6c6

Please sign in to comment.