Skip to content

Commit 9b96e9e

Browse files
committed
test(MongoBinaryDownloadUrl): update arch test names
1 parent f33f6dc commit 9b96e9e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/mongodb-memory-server-core/src/util/__tests__/MongoBinaryDownloadUrl.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ describe('MongoBinaryDownloadUrl', () => {
858858

859859
// for arch and arch based systems (no specific extra mapping)
860860
describe('for arch', () => {
861-
it('for arch for 4.4.2', async () => {
861+
it('arch (x86_64) & 4.4.2 (using ubuntu2004)', async () => {
862862
jest.spyOn(console, 'warn').mockImplementation(() => void 0);
863863

864864
const du = new MongoBinaryDownloadUrl({
@@ -878,7 +878,7 @@ describe('MongoBinaryDownloadUrl', () => {
878878
expect(console.warn).toHaveBeenCalledTimes(1);
879879
});
880880

881-
it('for arch for 5.0.0', async () => {
881+
it('arch (x86_64) & 5.0.0 (using ubuntu2004)', async () => {
882882
jest.spyOn(console, 'warn').mockImplementation(() => void 0);
883883

884884
const du = new MongoBinaryDownloadUrl({
@@ -898,7 +898,7 @@ describe('MongoBinaryDownloadUrl', () => {
898898
expect(console.warn).toHaveBeenCalledTimes(1);
899899
});
900900

901-
it('for arch for 6.0.4', async () => {
901+
it('arch (x86_64) & 6.0.4 (using ubuntu2204)', async () => {
902902
jest.spyOn(console, 'warn').mockImplementation(() => void 0);
903903

904904
const du = new MongoBinaryDownloadUrl({
@@ -918,7 +918,7 @@ describe('MongoBinaryDownloadUrl', () => {
918918
expect(console.warn).toHaveBeenCalledTimes(1);
919919
});
920920

921-
it('for manjaro for 4.4.2', async () => {
921+
it('manjaro (x86_64) & 4.4.2 (using ubuntu2004)', async () => {
922922
jest.spyOn(console, 'warn').mockImplementation(() => void 0);
923923

924924
const du = new MongoBinaryDownloadUrl({
@@ -938,7 +938,7 @@ describe('MongoBinaryDownloadUrl', () => {
938938
expect(console.warn).toHaveBeenCalledTimes(1);
939939
});
940940

941-
it('for archstrike for 4.4.2', async () => {
941+
it('archstrike (x86_64) & 4.4.2 (using ubuntu2004)', async () => {
942942
jest.spyOn(console, 'warn').mockImplementation(() => void 0);
943943

944944
const du = new MongoBinaryDownloadUrl({

0 commit comments

Comments
 (0)