Skip to content

Commit 5d9eaac

Browse files
committed
Fix lint errors
1 parent c32332d commit 5d9eaac

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tinymce-angular-component/src/test/ts/alien/TestHooks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export const editorHook = <T = unknown>(component: Type<T>, moduleDef: TestModul
7070
fixture.detectChanges();
7171

7272
return firstValueFrom(
73-
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
73+
7474
editorComponent.onInit.pipe(
7575
throwTimeout(10000, `Timed out waiting for editor to load`),
7676
switchMap(

tinymce-angular-component/src/test/ts/smoke-test/VerifyIntegrationTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('VerifyIntegrationTest', () => {
2323
Assertions.assertEq(`Loaded version of TinyMCE should be ${version}`, version, editor.editorManager.majorVersion);
2424
Assertions.assertEq(`Loaded version of TinyMCE should be ${version}`, version, Global.tinymce.majorVersion);
2525
};
26-
26+
2727
for (const version of supportedTinymceVersions()) {
2828
context(`With local Tinymce version ${version}`, () => {
2929
const createFixture = editorHook(EditorComponent, {
@@ -42,7 +42,7 @@ describe('VerifyIntegrationTest', () => {
4242
const integrationInfo = await window.fetch('/custom/integration/info').then((resp) => resp.json()) as IntegrationInfo;
4343
const container = editor.getContainer();
4444

45-
Assertions.assertEq(`Angular version should be ${integrationInfo.version}`,
45+
Assertions.assertEq(`Angular version should be ${integrationInfo.version}`,
4646
true,
4747
Attribute.get(SugarElement.fromDom(container), 'data-framework-version') === integrationInfo.version
4848
);

0 commit comments

Comments
 (0)