Skip to content

Commit

Permalink
Disabling flapping FlowTest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeingold35 committed Nov 13, 2024
1 parent 199fba2 commit 8214cac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/code-analyzer-flowtest-engine/test/engine.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const PATH_TO_WORKSPACE = path.resolve(__dirname, 'test-data', 'example-workspac
const PATH_TO_SAMPLE_RESULTS = path.resolve(__dirname, 'test-data', 'sample-flowtest-results', 'engine.test.ts');
const PATH_TO_GOLDFILES = path.resolve(__dirname, 'test-data', 'goldfiles', 'engine.test.ts');

describe('Tests for the FlowTestEngine', () => {
xdescribe('Tests for the FlowTestEngine', () => {
it('getName() returns correct name', () => {
const engine: FlowTestEngine = new FlowTestEngine(new StubCommandWrapper([]));
expect(engine.getName()).toEqual('flowtest');
Expand Down
2 changes: 1 addition & 1 deletion packages/code-analyzer-flowtest-engine/test/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {FLOWTEST_ENGINE_CONFIG_DESCRIPTION} from "../src/config";

changeWorkingDirectoryToPackageRoot();

describe('Tests for the FlowTestEnginePlugin', () => {
xdescribe('Tests for the FlowTestEnginePlugin', () => {
it('When getAvailableNames is called, then it returns the FlowTestEngine name', () => {
const plugin: EnginePluginV1 = new FlowTestEnginePlugin();
expect(plugin.getAvailableEngineNames()).toEqual([FlowTestEngine.NAME]);
Expand Down

0 comments on commit 8214cac

Please sign in to comment.