@@ -41,8 +41,8 @@ describe('MongoBinaryDownloadUrl', () => {
4141 } ) ;
4242
4343 describe ( 'getDownloadUrl()' , ( ) => {
44- describe ( 'for mac ' , ( ) => {
45- it ( 'latest' , async ( ) => {
44+ describe ( 'macos ' , ( ) => {
45+ it ( 'macos (x86_64) & latest (using macos) ' , async ( ) => {
4646 const du = new MongoBinaryDownloadUrl ( {
4747 platform : 'darwin' ,
4848 arch : 'x64' ,
@@ -53,7 +53,7 @@ describe('MongoBinaryDownloadUrl', () => {
5353 ) ;
5454 } ) ;
5555
56- it ( '4.4' , async ( ) => {
56+ it ( 'macos (x86_64) & 4.4.0 (using macos) ' , async ( ) => {
5757 const du = new MongoBinaryDownloadUrl ( {
5858 platform : 'darwin' ,
5959 arch : 'x64' ,
@@ -64,7 +64,7 @@ describe('MongoBinaryDownloadUrl', () => {
6464 ) ;
6565 } ) ;
6666
67- it ( 'above 3.0 ' , async ( ) => {
67+ it ( 'macos (x86_64) & 3.6.3 (using osx) ' , async ( ) => {
6868 const du = new MongoBinaryDownloadUrl ( {
6969 platform : 'darwin' ,
7070 arch : 'x64' ,
@@ -75,7 +75,7 @@ describe('MongoBinaryDownloadUrl', () => {
7575 ) ;
7676 } ) ;
7777
78- it ( 'below and include 3.0' , async ( ) => {
78+ it ( 'macos (x86_64) & 3.0.0 (using osx) ' , async ( ) => {
7979 const du = new MongoBinaryDownloadUrl ( {
8080 platform : 'darwin' ,
8181 arch : 'x64' ,
@@ -86,7 +86,7 @@ describe('MongoBinaryDownloadUrl', () => {
8686 ) ;
8787 } ) ;
8888
89- it ( 'should work with mongodb 6.0' , async ( ) => {
89+ it ( 'macos (x86_64) & 6.0.0 (using macos) ' , async ( ) => {
9090 const du = new MongoBinaryDownloadUrl ( {
9191 platform : 'darwin' ,
9292 arch : 'x64' ,
@@ -98,7 +98,7 @@ describe('MongoBinaryDownloadUrl', () => {
9898 ) ;
9999 } ) ;
100100
101- it ( 'arm64 should use the x64 binary for versions below 6.0.0' , async ( ) => {
101+ it ( 'macos ( arm64) & 4.4.0 (arm64 should use the x64 binary for versions below 6.0.0) ' , async ( ) => {
102102 const du = new MongoBinaryDownloadUrl ( {
103103 platform : 'darwin' ,
104104 arch : 'arm64' ,
@@ -109,7 +109,7 @@ describe('MongoBinaryDownloadUrl', () => {
109109 ) ;
110110 } ) ;
111111
112- it ( 'arm64 should use the arm64 binary for versions above and equal to 6.0.0' , async ( ) => {
112+ it ( 'macos ( arm64) & 6.0.0 (arm64 should use the arm64 binary for versions above and equal to 6.0.0) ' , async ( ) => {
113113 const du = new MongoBinaryDownloadUrl ( {
114114 platform : 'darwin' ,
115115 arch : 'arm64' ,
@@ -120,7 +120,7 @@ describe('MongoBinaryDownloadUrl', () => {
120120 ) ;
121121 } ) ;
122122
123- it ( 'should work with mongodb 7.0 (x86_64) ' , async ( ) => {
123+ it ( 'macos (x86_64) & 7.0.14 ' , async ( ) => {
124124 const du = new MongoBinaryDownloadUrl ( {
125125 platform : 'darwin' ,
126126 arch : 'x64' ,
@@ -132,7 +132,7 @@ describe('MongoBinaryDownloadUrl', () => {
132132 ) ;
133133 } ) ;
134134
135- it ( 'should work with mongodb 7.0 (arm64) ' , async ( ) => {
135+ it ( 'macos (arm64) & 7.0.14 ' , async ( ) => {
136136 const du = new MongoBinaryDownloadUrl ( {
137137 platform : 'darwin' ,
138138 arch : 'arm64' ,
@@ -144,7 +144,7 @@ describe('MongoBinaryDownloadUrl', () => {
144144 ) ;
145145 } ) ;
146146
147- it ( 'should allow v5.0-latest x64 ' , async ( ) => {
147+ it ( 'macos (x86_64) & v5.0-latest' , async ( ) => {
148148 const du = new MongoBinaryDownloadUrl ( {
149149 platform : 'darwin' ,
150150 arch : 'x64' ,
@@ -155,7 +155,7 @@ describe('MongoBinaryDownloadUrl', () => {
155155 ) ;
156156 } ) ;
157157
158- it ( 'should allow v5.0-latest arm64 ' , async ( ) => {
158+ it ( 'macos (arm64) & v5.0-latest' , async ( ) => {
159159 const du = new MongoBinaryDownloadUrl ( {
160160 platform : 'darwin' ,
161161 arch : 'arm64' ,
0 commit comments