This repository was archived by the owner on Sep 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +66
-6
lines changed Expand file tree Collapse file tree 6 files changed +66
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ nodeLinker: node-modules
3
3
4
4
# By default, publish packages privately to GitHub for internal testing instead of to NPM.
5
5
npmScopes :
6
- unflakable :
6
+ unflakable-private :
7
7
npmPublishRegistry : https://npm.pkg.github.com
8
8
npmPublishAccess : restricted
Original file line number Diff line number Diff line change 25
25
"lint" : " eslint packages/**/src/*.{ts,js} scripts/**/*.{ts,js}" ,
26
26
"prettier" : " prettier --write packages/**/src/*.{ts,js}" ,
27
27
"prettier:check" : " prettier --check packages/**/src/*.{ts,js}" ,
28
- "publish:private " : " yarn workspace @unflakable/js-api npm publish && yarn workspace @unflakable/jest-plugin npm publish" ,
28
+ "publish" : " yarn workspace @unflakable/js-api npm publish --access public && yarn workspace @unflakable/jest-plugin npm publish --access public " ,
29
29
"set-jest-version" : " ts-node scripts/set-jest-version.ts"
30
30
},
31
31
"workspaces" : [
Original file line number Diff line number Diff line change
1
+ <p align =" center " >
2
+ <a href =" https://unflakable.com " target =" _blank " rel =" noopener " align =" center " >
3
+ <img src="https://github.com/unflakable/unflakable-javascript/blob/main/images/logo.svg?raw=true" width="350" alt="Unflakable" />
4
+ </a >
5
+ </p >
6
+
7
+ [ ![ npm version] ( https://img.shields.io/npm/v/@unflakable/jest-plugin.svg )] ( https://www.npmjs.com/package/@unflakable/jest-plugin )
8
+ [ ![ Twitter Follow] ( https://img.shields.io/twitter/url?label=%40unflakable&style=social&url=https%3A%2F%2Ftwitter.com%2Fintent%2Ffollow%3Fscreen_name%3Dunflakable )] ( https://twitter.com/intent/follow?screen_name=unflakable )
9
+
10
+ # Unflakable Plugin for Jest
11
+
12
+ This Unflakable plugin enables users of the [ Jest] ( https://jestjs.io ) JavaScript test framework
13
+ to quarantine flaky tests and track test results.
14
+
15
+ Refer to the [ Jest Plugin] ( https://docs.unflakable.com/plugins/jest ) documentation for
16
+ complete usage instructions.
17
+
18
+ ### Compatibility
19
+
20
+ This plugin maintains compatibility with the Jest and Node.js versions listed below:
21
+
22
+ [ ![ 27.0.0+] ( https://img.shields.io/badge/Jest-27.0.0%2B-C21325?logo=jest&labelColor=white&logoColor=C21325&style=flat-square )] ( # )
23
+ [ ![ 26.0.0+] ( https://img.shields.io/badge/Jest-26.0.0%2B-C21325?logo=jest&labelColor=white&logoColor=C21325&style=flat-square )] ( # )
24
+ [ ![ 25.1.0+] ( https://img.shields.io/badge/Jest-25.1.0%2B-C21325?logo=jest&labelColor=white&logoColor=C21325&style=flat-square )] ( # )
25
+ <br />
26
+ [ ![ 18] ( https://img.shields.io/badge/Node.js-18-339933?logo=node.js&labelColor=white&logoColor=339933&style=flat-square )] ( # )
27
+ [ ![ 16] ( https://img.shields.io/badge/Node.js-16-339933?logo=node.js&labelColor=white&logoColor=339933&style=flat-square )] ( # )
28
+ [ ![ 14] ( https://img.shields.io/badge/Node.js-14-339933?logo=node.js&labelColor=white&logoColor=339933&style=flat-square )] ( # )
29
+
30
+ ## Contributing
31
+
32
+ To report a bug or request a new feature, please
33
+ [ file a GitHub issue] ( https://github.com/unflakable/unflakable-javascript/issues ) .
34
+ We also welcome pull requests!
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @unflakable/jest-plugin" ,
3
3
"description" : " Jest plugin for Unflakable" ,
4
- "repository" : " https://github.com/unflakable/unflakable-javascript" ,
4
+ "repository" : {
5
+ "type" : " git" ,
6
+ "url" : " https://github.com/unflakable/unflakable-javascript.git"
7
+ },
5
8
"bugs" : " https://github.com/unflakable/unflakable-javascript/issues" ,
6
9
"homepage" : " https://unflakable.com" ,
7
10
"license" : " MIT" ,
8
- "version" : " 0.1.0 " ,
11
+ "version" : " 0.1.1 " ,
9
12
"exports" : {
10
13
"." : {
11
14
"types" : " ./dist/index.d.ts" ,
14
17
"./package.json" : " ./package.json"
15
18
},
16
19
"files" : [
20
+ " README.md" ,
17
21
" dist/**/*.js" ,
18
22
" dist/**/*.d.ts"
19
23
],
Original file line number Diff line number Diff line change
1
+ <p align =" center " >
2
+ <a href =" https://unflakable.com " target =" _blank " rel =" noopener " align =" center " >
3
+ <img src="https://github.com/unflakable/unflakable-javascript/blob/main/images/logo.svg?raw=true" width="350" alt="Unflakable" />
4
+ </a >
5
+ </p >
6
+
7
+ [ ![ npm version] ( https://img.shields.io/npm/v/@unflakable/js-api.svg )] ( https://www.npmjs.com/package/@unflakable/js-api )
8
+ [ ![ Twitter Follow] ( https://img.shields.io/twitter/url?label=%40unflakable&style=social&url=https%3A%2F%2Ftwitter.com%2Fintent%2Ffollow%3Fscreen_name%3Dunflakable )] ( https://twitter.com/intent/follow?screen_name=unflakable )
9
+
10
+ # Unflakable JavaScript API
11
+
12
+ This package is used by the Unflakable JavaScript plugins to communicate with the Unflakable API.
13
+
14
+ ## Contributing
15
+
16
+ To report a bug or request a new feature, please
17
+ [ file a GitHub issue] ( https://github.com/unflakable/unflakable-javascript/issues ) .
18
+ We also welcome pull requests!
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @unflakable/js-api" ,
3
3
"description" : " JavaScript API for Unflakable" ,
4
- "repository" : " https://github.com/unflakable/unflakable-javascript" ,
4
+ "repository" : {
5
+ "type" : " git" ,
6
+ "url" : " https://github.com/unflakable/unflakable-javascript.git"
7
+ },
5
8
"bugs" : " https://github.com/unflakable/unflakable-javascript/issues" ,
6
9
"homepage" : " https://unflakable.com" ,
7
10
"license" : " MIT" ,
8
- "version" : " 0.1.0 " ,
11
+ "version" : " 0.1.1 " ,
9
12
"main" : " dist/index.js" ,
10
13
"types" : " dist/index.d.ts" ,
11
14
"files" : [
15
+ " README.md" ,
12
16
" dist/**/*.js" ,
13
17
" dist/**/*.d.ts"
14
18
],
You can’t perform that action at this time.
0 commit comments