refactor: convert auth_sso files to ts (#28349)

- convert js files to ts
- update types

Fixes #21311
Этот коммит содержится в:
Angel Mendez
2024-10-08 16:24:40 -06:00
коммит произвёл GitHub
родитель 54a5ecb721
Коммит 84fba1e1d4
2 изменённых файлов: 7 добавлений и 6 удалений

Просмотреть файл

@@ -10,13 +10,14 @@
// Stage: @prod
// Group: @channels @enterprise @system_console @authentication
import {Team} from '@mattermost/types/teams';
import * as TIMEOUTS from '../../../../fixtures/timeouts';
import {getRandomId} from '../../../../utils';
describe('Authentication', () => {
const restrictCreationToDomains = 'mattermost.com, test.com';
let testTeam;
let testTeam: Team;
before(() => {
cy.apiRequireLicense();

Просмотреть файл

@@ -10,14 +10,14 @@
// Stage: @prod
// Group: @channels @enterprise @system_console @authentication @mfa
import {UserProfile} from '@mattermost/types/users';
import * as authenticator from 'authenticator';
import * as TIMEOUTS from '../../../../fixtures/timeouts';
const authenticator = require('authenticator');
describe('Authentication', () => {
let mfaSysAdmin;
let testUser;
let adminMFASecret;
let mfaSysAdmin: UserProfile;
let testUser: UserProfile;
let adminMFASecret: string;
before(() => {
cy.apiRequireLicenseForFeature('MFA');