Skip to content

Commit b407292

Browse files
Move encoder settings tests into settings directory
1 parent 31ddf97 commit b407292

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ import { execFileSync } from 'child_process';
22
import { ensureDir, readdir, writeFile } from 'fs-extra';
33
import * as path from 'path';
44
import { platform } from 'os';
5-
import type { ServicesManager } from '../../app/services-manager';
6-
import type { StreamingService } from '../../app/services/streaming/streaming';
7-
import { SettingsService } from '../../app/services/settings';
8-
import { VideoSettingsService } from '../../app/services/settings-v2/video';
9-
import { ScenesService } from '../../app/services/api/external-api/scenes';
10-
import { IAudioServiceApi } from '../../app/services/audio';
11-
import { NotificationsService } from '../../app/services/notifications';
12-
import { IObsListInput } from '../../app/components/obs/inputs/ObsInput';
13-
import { getApiClient } from '../helpers/api-client';
14-
import { focusMain, focusWindow, waitForDisplayed } from '../helpers/modules/core';
15-
import { startRecording, stopRecording } from '../helpers/modules/streaming';
5+
import type { ServicesManager } from '../../../app/services-manager';
6+
import type { StreamingService } from '../../../app/services/streaming/streaming';
7+
import { SettingsService } from '../../../app/services/settings';
8+
import { VideoSettingsService } from '../../../app/services/settings-v2/video';
9+
import { ScenesService } from '../../../app/services/api/external-api/scenes';
10+
import { IAudioServiceApi } from '../../../app/services/audio';
11+
import { NotificationsService } from '../../../app/services/notifications';
12+
import { IObsListInput } from '../../../app/components/obs/inputs/ObsInput';
13+
import { getApiClient } from '../../helpers/api-client';
14+
import { focusMain, focusWindow, waitForDisplayed } from '../../helpers/modules/core';
15+
import { startRecording, stopRecording } from '../../helpers/modules/streaming';
1616
import {
1717
startReplayBuffer,
1818
saveReplayBuffer,
1919
stopReplayBuffer,
20-
} from '../helpers/modules/replay-buffer';
21-
import { sleep } from '../helpers/sleep';
22-
import { test, TExecutionContext, useWebdriver } from '../helpers/webdriver';
20+
} from '../../helpers/modules/replay-buffer';
21+
import { sleep } from '../../helpers/sleep';
22+
import { test, TExecutionContext, useWebdriver } from '../../helpers/webdriver';
2323

2424
// not a react hook
2525
// eslint-disable-next-line react-hooks/rules-of-hooks

0 commit comments

Comments
 (0)