File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import Cursor from '../src/cursor'
66const range = ( n ) => Array . from ( Array ( n ) . keys ( ) )
77const alpha = ( i ) => String . fromCharCode ( 'a' . charCodeAt ( 0 ) + i )
88const ARANGO_VERSION = Number ( process . env . ARANGO_VERSION || 30000 )
9- const describe_2x = ARANGO_VERSION < 30000 ? describe : describe . skip
9+ const describe2x = ARANGO_VERSION < 30000 ? describe : describe . skip
1010
1111describe ( 'Simple queries' , ( ) => {
1212 let name = `testdb_${ Date . now ( ) } `
@@ -83,7 +83,7 @@ describe('Simple queries', () => {
8383 . catch ( done )
8484 } )
8585 } )
86- describe_2x ( 'collection.first' , ( ) => {
86+ describe2x ( 'collection.first' , ( ) => {
8787 it ( 'returns the first document in the collection' , ( done ) => {
8888 collection . first ( )
8989 . then ( ( doc ) => {
@@ -97,7 +97,7 @@ describe('Simple queries', () => {
9797 . catch ( done )
9898 } )
9999 } )
100- describe_2x ( 'collection.last' , ( ) => {
100+ describe2x ( 'collection.last' , ( ) => {
101101 it ( 'returns the last document in the collection' , ( done ) => {
102102 collection . last ( )
103103 . then ( ( doc ) => {
You can’t perform that action at this time.
0 commit comments