Skip to content

Commit

Permalink
Merge pull request #89 from basics/feature/test
Browse files Browse the repository at this point in the history
Feature/test
  • Loading branch information
StephanGerbeth authored Nov 24, 2024
2 parents c0417c7 + 62652b1 commit 20e64ba
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
8 changes: 8 additions & 0 deletions packages/operators/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Project Changelog

# [@rxjs-collection/operators-v1.0.8](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.7...@rxjs-collection/operators-v1.0.8) (2024-11-24)


### Bug Fixes

* **operators:** optimized option declaration and added cache to request ([e1a0d3e](https://github.com/basics/rxjs-collection/commit/e1a0d3ed84e3d2c44cbdc939dfac48b330138b23))
* **operators:** retry cleanup ([c46cbbe](https://github.com/basics/rxjs-collection/commit/c46cbbe1f06e9ab16ea551789fd3e8a3e85c7d1b))

# [@rxjs-collection/operators-v1.0.8-beta.2](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.8-beta.1...@rxjs-collection/operators-v1.0.8-beta.2) (2024-11-24)


Expand Down
2 changes: 1 addition & 1 deletion packages/operators/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rxjs-collection/operators",
"version": "1.0.8-beta.2",
"version": "1.0.8",
"description": "rxjs operators",
"license": "MIT",
"contributors": [
Expand Down
4 changes: 3 additions & 1 deletion packages/operators/src/request/autoPagination.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ describe('auto pagination', () => {
});
});

describe('auto pagination - demo', () => {
/* v8 ignore start */
describe.skip('auto pagination - demo', () => {
test('sample', async () => {
const { autoPagination } = await import('./autoPagination');

Expand Down Expand Up @@ -94,3 +95,4 @@ describe('auto pagination - demo', () => {
);
});
});
/* v8 ignore stop */
4 changes: 3 additions & 1 deletion packages/operators/src/request/concurrentRequest.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ describe('concurrent request', () => {
});
});

describe('concurrent request - demo', () => {
/* v8 ignore start */
describe.skip('concurrent request - demo', () => {
test('sample', async () => {
const { concurrentRequest } = await import('./concurrentRequest');

Expand Down Expand Up @@ -74,3 +75,4 @@ describe('concurrent request - demo', () => {
);
});
});
/* v8 ignore stop */
4 changes: 3 additions & 1 deletion packages/operators/src/request/lazyPagination.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ describe('lazy pagination', () => {
});
});

describe('lazy pagination - demo', () => {
/* v8 ignore start */
describe.skip('lazy pagination - demo', () => {
test('sample', async () => {
const { lazyPagination } = await import('./lazyPagination');

Expand Down Expand Up @@ -111,3 +112,4 @@ describe('lazy pagination - demo', () => {
await result;
});
});
/* v8 ignore stop */
4 changes: 3 additions & 1 deletion packages/operators/src/request/request.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ describe('request', () => {
});
});

describe('request - demo ', () => {
/* v8 ignore start */
describe.skip('request - demo ', () => {
test('sample - successfull upload', async () => {
const { request } = await import('./request.js');

Expand Down Expand Up @@ -151,3 +152,4 @@ describe('request - demo ', () => {
);
});
});
/* v8 ignore stop */

0 comments on commit 20e64ba

Please sign in to comment.