Skip to content

Commit

Permalink
chore: rename test-adapter to hermione
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowusr committed Sep 1, 2023
1 parent 469387f commit b056325
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/test-adapter.ts → lib/test-adapter/hermione.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ import _ from 'lodash';
import fs from 'fs-extra';
import path from 'path';

import {SuiteAdapter} from './suite-adapter';
import {getSuitePath} from './plugin-utils';
import {getCommandsHistory} from './history-utils';
import {ERROR_DETAILS_PATH, TestStatus} from './constants';
import {getError, isImageDiffError, mkTestId} from './common-utils';
import * as utils from './server-utils';
import {SuiteAdapter} from '../suite-adapter';
import {getSuitePath} from '../plugin-utils';
import {getCommandsHistory} from '../history-utils';
import {ERROR_DETAILS_PATH, TestStatus} from '../constants';
import {getError, isImageDiffError, mkTestId} from '../common-utils';
import * as utils from '../server-utils';
import {
AssertViewResult,
ErrorDetails,
ImageBase64,
ImageData,
ImageInfoFull,
TestResult
} from './types';
import {ImagesInfoFormatter} from './image-handler';
} from '../types';
import {ImagesInfoFormatter} from '../image-handler';

const testsAttempts: Map<string, number> = new Map();

Expand Down
1 change: 1 addition & 0 deletions lib/test-adapter/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './hermione';

0 comments on commit b056325

Please sign in to comment.