You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [Testing](#testing) below for more details on testing.
50
+
45
51
## Report a bug or requesting feature
46
52
47
53
Reporting bugs is an important contribution. Please make sure to include:
@@ -151,7 +157,7 @@ npm run test:with-services-env # runs 'npm test' with envvars from test/test-ser
151
157
npm run test-services:stop # stops services in Docker
152
158
```
153
159
154
-
If you only want to test a single package that dfepends on a service (e.g. the `instrumentation-mongodb`) you can `cd` into it and
160
+
If you only want to test a single package that depends on a service (e.g. the `instrumentation-mongodb`) you can `cd` into it and
155
161
use the same scripts for testing. In this case the script will only start the services needed to test the package.
156
162
157
163
```sh
@@ -161,6 +167,12 @@ npm run test:with-services-env # runs 'npm test' with envvars from test/tes
161
167
npm run test-services:stop # stop MongoDB service in Docker
162
168
```
163
169
170
+
**Browser** tests are run via:
171
+
172
+
```sh
173
+
npm run test:browser
174
+
```
175
+
164
176
### Benchmarks
165
177
166
178
When two or more approaches must be compared, please write a benchmark in the benchmark/index.js module so that we can keep track of the most efficient algorithm.
0 commit comments