diff --git a/packages/operators/CHANGELOG.md b/packages/operators/CHANGELOG.md index f348e3c..9987d47 100644 --- a/packages/operators/CHANGELOG.md +++ b/packages/operators/CHANGELOG.md @@ -1,5 +1,12 @@ # Project Changelog +# [@rxjs-collection/operators-v1.0.9-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.8...@rxjs-collection/operators-v1.0.9-beta.1) (2024-11-24) + + +### Bug Fixes + +* **operators:** remove skips from coverage ([62652b1](https://github.com/basics/rxjs-collection/commit/62652b13635e35a348d9ae134e389a3a1f39aa59)) + # [@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) diff --git a/packages/operators/package.json b/packages/operators/package.json index f7737f5..51b4222 100644 --- a/packages/operators/package.json +++ b/packages/operators/package.json @@ -1,6 +1,6 @@ { "name": "@rxjs-collection/operators", - "version": "1.0.8", + "version": "1.0.9-beta.1", "description": "rxjs operators", "license": "MIT", "contributors": [ diff --git a/packages/operators/src/request/autoPagination.test.js b/packages/operators/src/request/autoPagination.test.js index 9f23dd4..6951218 100644 --- a/packages/operators/src/request/autoPagination.test.js +++ b/packages/operators/src/request/autoPagination.test.js @@ -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'); @@ -94,3 +95,4 @@ describe('auto pagination - demo', () => { ); }); }); +/* v8 ignore stop */ diff --git a/packages/operators/src/request/concurrentRequest.test.js b/packages/operators/src/request/concurrentRequest.test.js index 227545f..6d2548c 100644 --- a/packages/operators/src/request/concurrentRequest.test.js +++ b/packages/operators/src/request/concurrentRequest.test.js @@ -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'); @@ -74,3 +75,4 @@ describe('concurrent request - demo', () => { ); }); }); +/* v8 ignore stop */ diff --git a/packages/operators/src/request/lazyPagination.test.js b/packages/operators/src/request/lazyPagination.test.js index 3d3f428..3873271 100644 --- a/packages/operators/src/request/lazyPagination.test.js +++ b/packages/operators/src/request/lazyPagination.test.js @@ -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'); @@ -111,3 +112,4 @@ describe('lazy pagination - demo', () => { await result; }); }); +/* v8 ignore stop */ diff --git a/packages/operators/src/request/request.test.js b/packages/operators/src/request/request.test.js index e0e849c..a9d6ec3 100644 --- a/packages/operators/src/request/request.test.js +++ b/packages/operators/src/request/request.test.js @@ -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'); @@ -151,3 +152,4 @@ describe('request - demo ', () => { ); }); }); +/* v8 ignore stop */