1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

[SM-1305] Add Kubernetes and Rust to the integrations page (#9611)

* Add Kubernetes and Rust to the integrations page

* Fix integrations page tests
This commit is contained in:
Robyn MacCallum
2024-06-14 16:54:52 -04:00
committed by GitHub
parent 0dd476588d
commit afe9a1768a
6 changed files with 131 additions and 2 deletions

View File

@@ -68,10 +68,10 @@ describe("IntegrationsComponent", () => {
(integrationList.componentInstance as IntegrationGridComponent).integrations.map(
(i) => i.name,
),
).toEqual(["GitHub Actions", "GitLab CI/CD", "Ansible"]);
).toEqual(["GitHub Actions", "GitLab CI/CD", "Ansible", "Kubernetes Operator"]);
expect(
(sdkList.componentInstance as IntegrationGridComponent).integrations.map((i) => i.name),
).toEqual(["C#", "C++", "Go", "Java", "JS WebAssembly", "php", "Python", "Ruby"]);
).toEqual(["Rust", "C#", "C++", "Go", "Java", "JS WebAssembly", "php", "Python", "Ruby"]);
});
});