25 lines
910 B
TypeScript
25 lines
910 B
TypeScript
/*
|
|
Copyright 2025 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import {
|
|
MatrixAuthenticationServiceContainer as BaseMatrixAuthenticationServiceContainer,
|
|
type StartedPostgreSqlContainer,
|
|
} from "@element-hq/element-web-playwright-common/lib/testcontainers";
|
|
|
|
const TAG = "main@sha256:a1a5cf8820660c7bd160e6244791105b832b2c2cfda55bd38569304c0dffc1ba";
|
|
|
|
/**
|
|
* MatrixAuthenticationServiceContainer which freezes the docker digest to
|
|
* stabilise tests, updated periodically by the `playwright-image-updates.yaml`
|
|
* workflow.
|
|
*/
|
|
export class MatrixAuthenticationServiceContainer extends BaseMatrixAuthenticationServiceContainer {
|
|
public constructor(db: StartedPostgreSqlContainer) {
|
|
super(db, `ghcr.io/element-hq/matrix-authentication-service:${TAG}`);
|
|
}
|
|
}
|