@@ -1178,7 +1178,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1178
1178
* Creates a new backend definition.
1179
1179
*
1180
1180
* @param {string } method HTTP method.
1181
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1181
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1182
1182
* and returns true if the url match the current definition.
1183
1183
* @param {(string|RegExp|function(string))= } data HTTP request body or function that receives
1184
1184
* data string and returns true if the data is as expected.
@@ -1217,7 +1217,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1217
1217
* @description
1218
1218
* Creates a new backend definition for GET requests. For more info see `when()`.
1219
1219
*
1220
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1220
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1221
1221
* and returns true if the url match the current definition.
1222
1222
* @param {(Object|function(Object))= } headers HTTP headers.
1223
1223
* @returns {requestHandler } Returns an object with `respond` method that control how a matched
@@ -1230,7 +1230,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1230
1230
* @description
1231
1231
* Creates a new backend definition for HEAD requests. For more info see `when()`.
1232
1232
*
1233
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1233
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1234
1234
* and returns true if the url match the current definition.
1235
1235
* @param {(Object|function(Object))= } headers HTTP headers.
1236
1236
* @returns {requestHandler } Returns an object with `respond` method that control how a matched
@@ -1243,7 +1243,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1243
1243
* @description
1244
1244
* Creates a new backend definition for DELETE requests. For more info see `when()`.
1245
1245
*
1246
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1246
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1247
1247
* and returns true if the url match the current definition.
1248
1248
* @param {(Object|function(Object))= } headers HTTP headers.
1249
1249
* @returns {requestHandler } Returns an object with `respond` method that control how a matched
@@ -1256,7 +1256,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1256
1256
* @description
1257
1257
* Creates a new backend definition for POST requests. For more info see `when()`.
1258
1258
*
1259
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1259
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1260
1260
* and returns true if the url match the current definition.
1261
1261
* @param {(string|RegExp|function(string))= } data HTTP request body or function that receives
1262
1262
* data string and returns true if the data is as expected.
@@ -1271,7 +1271,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1271
1271
* @description
1272
1272
* Creates a new backend definition for PUT requests. For more info see `when()`.
1273
1273
*
1274
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1274
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1275
1275
* and returns true if the url match the current definition.
1276
1276
* @param {(string|RegExp|function(string))= } data HTTP request body or function that receives
1277
1277
* data string and returns true if the data is as expected.
@@ -1286,7 +1286,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1286
1286
* @description
1287
1287
* Creates a new backend definition for JSONP requests. For more info see `when()`.
1288
1288
*
1289
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1289
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1290
1290
* and returns true if the url match the current definition.
1291
1291
* @returns {requestHandler } Returns an object with `respond` method that control how a matched
1292
1292
* request is handled.
@@ -1301,7 +1301,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1301
1301
* Creates a new request expectation.
1302
1302
*
1303
1303
* @param {string } method HTTP method.
1304
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1304
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1305
1305
* and returns true if the url match the current definition.
1306
1306
* @param {(string|RegExp|function(string)|Object)= } data HTTP request body or function that
1307
1307
* receives data string and returns true if the data is as expected, or Object if request body
@@ -1334,7 +1334,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1334
1334
* @description
1335
1335
* Creates a new request expectation for GET requests. For more info see `expect()`.
1336
1336
*
1337
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1337
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1338
1338
* and returns true if the url match the current definition.
1339
1339
* @param {Object= } headers HTTP headers.
1340
1340
* @returns {requestHandler } Returns an object with `respond` method that control how a matched
@@ -1347,7 +1347,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1347
1347
* @description
1348
1348
* Creates a new request expectation for HEAD requests. For more info see `expect()`.
1349
1349
*
1350
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1350
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1351
1351
* and returns true if the url match the current definition.
1352
1352
* @param {Object= } headers HTTP headers.
1353
1353
* @returns {requestHandler } Returns an object with `respond` method that control how a matched
@@ -1360,7 +1360,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1360
1360
* @description
1361
1361
* Creates a new request expectation for DELETE requests. For more info see `expect()`.
1362
1362
*
1363
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1363
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1364
1364
* and returns true if the url match the current definition.
1365
1365
* @param {Object= } headers HTTP headers.
1366
1366
* @returns {requestHandler } Returns an object with `respond` method that control how a matched
@@ -1373,7 +1373,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1373
1373
* @description
1374
1374
* Creates a new request expectation for POST requests. For more info see `expect()`.
1375
1375
*
1376
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1376
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1377
1377
* and returns true if the url match the current definition.
1378
1378
* @param {(string|RegExp|function(string)|Object)= } data HTTP request body or function that
1379
1379
* receives data string and returns true if the data is as expected, or Object if request body
@@ -1389,7 +1389,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1389
1389
* @description
1390
1390
* Creates a new request expectation for PUT requests. For more info see `expect()`.
1391
1391
*
1392
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1392
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1393
1393
* and returns true if the url match the current definition.
1394
1394
* @param {(string|RegExp|function(string)|Object)= } data HTTP request body or function that
1395
1395
* receives data string and returns true if the data is as expected, or Object if request body
@@ -1405,7 +1405,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1405
1405
* @description
1406
1406
* Creates a new request expectation for PATCH requests. For more info see `expect()`.
1407
1407
*
1408
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1408
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1409
1409
* and returns true if the url match the current definition.
1410
1410
* @param {(string|RegExp|function(string)|Object)= } data HTTP request body or function that
1411
1411
* receives data string and returns true if the data is as expected, or Object if request body
@@ -1421,7 +1421,7 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
1421
1421
* @description
1422
1422
* Creates a new request expectation for JSONP requests. For more info see `expect()`.
1423
1423
*
1424
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1424
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1425
1425
* and returns true if the url match the current definition.
1426
1426
* @returns {requestHandler } Returns an object with `respond` method that control how a matched
1427
1427
* request is handled.
@@ -1824,7 +1824,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1824
1824
* Creates a new backend definition.
1825
1825
*
1826
1826
* @param {string } method HTTP method.
1827
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1827
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1828
1828
* and returns true if the url match the current definition.
1829
1829
* @param {(string|RegExp)= } data HTTP request body.
1830
1830
* @param {(Object|function(Object))= } headers HTTP headers or function that receives http header
@@ -1849,7 +1849,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1849
1849
* @description
1850
1850
* Creates a new backend definition for GET requests. For more info see `when()`.
1851
1851
*
1852
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1852
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1853
1853
* and returns true if the url match the current definition.
1854
1854
* @param {(Object|function(Object))= } headers HTTP headers.
1855
1855
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
@@ -1863,7 +1863,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1863
1863
* @description
1864
1864
* Creates a new backend definition for HEAD requests. For more info see `when()`.
1865
1865
*
1866
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1866
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1867
1867
* and returns true if the url match the current definition.
1868
1868
* @param {(Object|function(Object))= } headers HTTP headers.
1869
1869
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
@@ -1877,7 +1877,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1877
1877
* @description
1878
1878
* Creates a new backend definition for DELETE requests. For more info see `when()`.
1879
1879
*
1880
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1880
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1881
1881
* and returns true if the url match the current definition.
1882
1882
* @param {(Object|function(Object))= } headers HTTP headers.
1883
1883
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
@@ -1891,7 +1891,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1891
1891
* @description
1892
1892
* Creates a new backend definition for POST requests. For more info see `when()`.
1893
1893
*
1894
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1894
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1895
1895
* and returns true if the url match the current definition.
1896
1896
* @param {(string|RegExp)= } data HTTP request body.
1897
1897
* @param {(Object|function(Object))= } headers HTTP headers.
@@ -1906,7 +1906,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1906
1906
* @description
1907
1907
* Creates a new backend definition for PUT requests. For more info see `when()`.
1908
1908
*
1909
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1909
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1910
1910
* and returns true if the url match the current definition.
1911
1911
* @param {(string|RegExp)= } data HTTP request body.
1912
1912
* @param {(Object|function(Object))= } headers HTTP headers.
@@ -1921,7 +1921,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1921
1921
* @description
1922
1922
* Creates a new backend definition for PATCH requests. For more info see `when()`.
1923
1923
*
1924
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1924
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1925
1925
* and returns true if the url match the current definition.
1926
1926
* @param {(string|RegExp)= } data HTTP request body.
1927
1927
* @param {(Object|function(Object))= } headers HTTP headers.
@@ -1936,7 +1936,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1936
1936
* @description
1937
1937
* Creates a new backend definition for JSONP requests. For more info see `when()`.
1938
1938
*
1939
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1939
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1940
1940
* and returns true if the url match the current definition.
1941
1941
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
1942
1942
* control how a matched request is handled.
0 commit comments