Skip to content

Commit

Permalink
test(changelog): Move fixture files (#30225)
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed Jul 18, 2024
1 parent 2dfc542 commit 6907de1
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { BitbucketChangeLogSource } from './source';
const baseUrl = 'https://bitbucket.org/';
const apiBaseUrl = 'https://api.bitbucket.org/';

const changelogMd = Fixtures.get('jest.md', '../..');
const changelogMd = Fixtures.get('jest.md', '..');

const upgrade = partial<BranchUpgradeConfig>({
manager: 'some-manager',
Expand Down
12 changes: 6 additions & 6 deletions lib/workers/repository/update/pr/changelog/release-notes.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jest.mock('../../../../../util/host-rules', () => mockDeep());

const hostRules = mocked(_hostRules);

const angularJsChangelogMd = Fixtures.get('angular-js.md', '..');
const jestChangelogMd = Fixtures.get('jest.md', '..');
const jsYamlChangelogMd = Fixtures.get('js-yaml.md', '..');
const yargsChangelogMd = Fixtures.get('yargs.md', '..');
const adapterutilsChangelogMd = Fixtures.get('adapter-utils.md', '..');
const gitterWebappChangelogMd = Fixtures.get('gitter-webapp.md', '..');
const angularJsChangelogMd = Fixtures.get('angular-js.md');
const jestChangelogMd = Fixtures.get('jest.md');
const jsYamlChangelogMd = Fixtures.get('js-yaml.md');
const yargsChangelogMd = Fixtures.get('yargs.md');
const adapterutilsChangelogMd = Fixtures.get('adapter-utils.md');
const gitterWebappChangelogMd = Fixtures.get('gitter-webapp.md');

const githubTreeResponse = {
tree: [
Expand Down

0 comments on commit 6907de1

Please sign in to comment.