Skip to content

Commit

Permalink
do not merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeingold35 committed Sep 19, 2024
1 parent 7d333ba commit 2c1257e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/test/suite/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ suite('Extension Test Suite', () => {
}
});

suite.skip('sfca.runOnSelected', () => {
suite('sfca.runOnSelected', () => {
test('One file selected', async function() {
// ===== SETUP =====
// Set the timeout to a frankly absurd value, just to make sure Github Actions
Expand Down Expand Up @@ -154,12 +154,12 @@ suite('Extension Test Suite', () => {
});
});

test.skip('sfca.runDfaOnSelected', async () => {
test('sfca.runDfaOnSelected', async () => {
// TODO: Add actual tests for `runDfaOnSelected`.
});
});

suite.skip('#_runAndDisplayPathless()', () => {
suite('#_runAndDisplayPathless()', () => {
suite('Error handling', () => {
let commandTelemStub: Sinon.SinonStub;
let exceptionTelemStub: Sinon.SinonStub;
Expand Down Expand Up @@ -221,7 +221,7 @@ suite('Extension Test Suite', () => {
});
});

suite.skip('#_runAndDisplayDfa()', () => {
suite('#_runAndDisplayDfa()', () => {
suite('Error handling', () => {
let commandTelemStub: Sinon.SinonStub;
let exceptionTelemStub: Sinon.SinonStub;
Expand Down Expand Up @@ -287,7 +287,7 @@ suite('Extension Test Suite', () => {
});
});

suite.skip('#verifyPluginInstallation()', () => {
suite('#verifyPluginInstallation()', () => {
teardown(() => {
Sinon.restore();
});
Expand Down Expand Up @@ -331,7 +331,7 @@ suite('Extension Test Suite', () => {
});
});

suite.skip('#_shouldProceedWithDfaRun()', () => {
suite('#_shouldProceedWithDfaRun()', () => {
let ext = vscode.extensions.getExtension('salesforce.sfdx-code-analyzer-vscode');
let context: vscode.ExtensionContext;

Expand Down Expand Up @@ -366,7 +366,7 @@ suite('Extension Test Suite', () => {
});
});

suite.skip('#_stopExistingDfaRun()', () => {
suite('#_stopExistingDfaRun()', () => {
let ext = vscode.extensions.getExtension('salesforce.sfdx-code-analyzer-vscode');
let context: vscode.ExtensionContext;

Expand Down Expand Up @@ -394,7 +394,7 @@ suite('Extension Test Suite', () => {
});
});

suite.skip('#isValidFileForAnalysis', () => {
suite('#isValidFileForAnalysis', () => {
test('Returns true for valid files', async() => {
// ===== SETUP ===== and ===== ASSERTIONS =====
expect(_isValidFileForAnalysis(vscode.Uri.file("/some/path/file.apex"))).to.equal(true);
Expand All @@ -411,7 +411,7 @@ suite('Extension Test Suite', () => {
});
});

suite.skip('_clearDiagnosticsForSelectedFiles Test Suite', () => {
suite('_clearDiagnosticsForSelectedFiles Test Suite', () => {
let diagnosticCollection: vscode.DiagnosticCollection;
let runInfo: RunInfo;
let getTargetsStub: Sinon.SinonStub;
Expand Down Expand Up @@ -532,7 +532,7 @@ suite('Extension Test Suite', () => {
});
});

suite.skip('_removeSingleDiagnostic Test Suite', () => {
suite('_removeSingleDiagnostic Test Suite', () => {
let diagnosticCollection: vscode.DiagnosticCollection;

setup(() => {
Expand Down

0 comments on commit 2c1257e

Please sign in to comment.