Skip to content

Commit c365327

Browse files
jeff-allen-mongojdestefano-mongo
authored andcommitted
update node examples in makefile with new location (#362)
1 parent 9d2970c commit c365327

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

Makefile

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -118,19 +118,20 @@ examples:
118118
curl -SfL https://raw.githubusercontent.com/mongodb/mongo-ruby-driver/2.5-stable/spec/mongo/change_stream_examples_spec.rb -o ${DRIVERS_PATH}/change_stream_examples_spec.rb
119119

120120
# node
121-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/change_streams.test.js -o ${DRIVERS_PATH}/node_changestreams.js
122-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/array_filters.test.js -o ${DRIVERS_PATH}/node_array_filters.js
123-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/causal_consistency.test.js -o ${DRIVERS_PATH}/node_causal_consistency.js
124-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/insert.test.js -o ${DRIVERS_PATH}/node_insert.js
125-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/project_fields_from_query_results.test.js -o ${DRIVERS_PATH}/node_project.js
126-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/query.test.js -o ${DRIVERS_PATH}/node_query.js
127-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/query_embedded_documents.test.js -o ${DRIVERS_PATH}/node_query_embedded_documents.js
128-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/query_arrays.test.js -o ${DRIVERS_PATH}/node_query_arrays.js
129-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/query_array_of_documents.test.js -o ${DRIVERS_PATH}/node_query_array_of_documents.js
130-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/query_for_null_fields.test.js -o ${DRIVERS_PATH}/node_query_for_null_fields.js
131-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/remove_documents.test.js -o ${DRIVERS_PATH}/node_remove.js
132-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/transactions.test.js -o ${DRIVERS_PATH}/node_transactions.js
133-
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/functional/examples/update_documents.test.js -o ${DRIVERS_PATH}/node_update.js
121+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/change_streams.test.js -o ${DRIVERS_PATH}/node_changestreams.js
122+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/array_filters.test.js -o ${DRIVERS_PATH}/node_array_filters.js
123+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/causal_consistency.test.js -o ${DRIVERS_PATH}/node_causal_consistency.js
124+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/insert.test.js -o ${DRIVERS_PATH}/node_insert.js
125+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/project_fields_from_query_results.test.js -o ${DRIVERS_PATH}/node_project.js
126+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/query.test.js -o ${DRIVERS_PATH}/node_query.js
127+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/query_embedded_documents.test.js -o ${DRIVERS_PATH}/node_query_embedded_documents.js
128+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/query_arrays.test.js -o ${DRIVERS_PATH}/node_query_arrays.js
129+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/query_array_of_documents.test.js -o ${DRIVERS_PATH}/node_query_array_of_documents.js
130+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/query_for_null_fields.test.js -o ${DRIVERS_PATH}/node_query_for_null_fields.js
131+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/remove_documents.test.js -o ${DRIVERS_PATH}/node_remove.js
132+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/transactions.test.js -o ${DRIVERS_PATH}/node_transactions.js
133+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/main/test/integration/node-specific/examples/update_documents.test.js -o ${DRIVERS_PATH}/node_update.js
134+
curl -SfL https://raw.githubusercontent.com/mongodb/node-mongodb-native/4.0/test/functional/examples/versioned_api.js -o ${DRIVERS_PATH}/node_versioned_api.js
134135

135136
curl -SfL https://raw.githubusercontent.com/mongodb/mongo-php-library/v1.3/tests/DocumentationExamplesTest.php -o ${DRIVERS_PATH}/DocumentationExamplesTest.php
136137

0 commit comments

Comments
 (0)