Skip to content

Commit

Permalink
fix profiles tests by using this.app.props
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Nov 16, 2021
1 parent c465949 commit e5cbaee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/smoke/src/areas/terminal/terminal-profiles.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ContributedProfileName = `JavaScript Debug Terminal`;

export function setup(opts: ParsedArgs) {

describe('Terminal Profiles', () => {
describe.only('Terminal Profiles', () => {
let code: Code;
let terminal: Terminal;
const enum TerminalCommandId {
Expand All @@ -27,8 +27,8 @@ export function setup(opts: ParsedArgs) {
afterSuite(opts);

before(function () {
code = this.code;
terminal = this.terminal;
code = this.app.code;
terminal = this.app.workbench.terminal;
});

beforeEach(async function () {
Expand Down

0 comments on commit e5cbaee

Please sign in to comment.