Skip to content

Commit

Permalink
Merge pull request #1862 from gocodebox/eri-trabiccolo-patch-1
Browse files Browse the repository at this point in the history
Update releases.md
  • Loading branch information
Thomas Patrick Levy authored Nov 17, 2021
2 parents b7d35fa + f8b0f4c commit f074732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ After building and testing the built release, all changes should be committed an

## 3. Generate the Distribution Archive

Run `npm run dev archive`.
Run `npm run dev release archive`.

## 4. Run pre-release tests on the archived

Expand Down

1 comment on commit f074732

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

❌ An unexpected error occurred. For more details, check console

Error: The process '/opt/hostedtoolcache/node/14.18.1/x64/bin/npm' failed with exit code 1
St.
Category Percentage Covered / Total
🟡 Statements 67.96% 193/284
🔴 Branches 58.21% 78/134
🟡 Functions 76.6% 36/47
🟡 Lines 67.15% 186/277

Test suite run failed

Failed tests: 6/104. Failed suites: 1/10.
  ● getProjectPrivacy › Should return "public" for public repos

    expect(received).toBe(expected) // Object.is equality

    Expected: "public"
    Received: "unknown"

      16 | 	it.each( testData )( '%s', ( name, slug, expected ) => {
      17 | 		mockedSlug = slug;
    > 18 | 		expect( getProjectPrivacy() ).toBe( expected );
         | 		                              ^
      19 | 	} );
      20 | } );
      21 |

      at packages/dev/test/utils/get-project-privacy.test.js:18:33

  ● getProjectPrivacy › Should return "private" for private repos

    expect(received).toBe(expected) // Object.is equality

    Expected: "private"
    Received: "unknown"

      16 | 	it.each( testData )( '%s', ( name, slug, expected ) => {
      17 | 		mockedSlug = slug;
    > 18 | 		expect( getProjectPrivacy() ).toBe( expected );
         | 		                              ^
      19 | 	} );
      20 | } );
      21 |

      at packages/dev/test/utils/get-project-privacy.test.js:18:33

  ● isProjectPublic › Should return true for public repos

    expect(received).toBe(expected) // Object.is equality

    Expected: true
    Received: undefined

      28 | 	it.each( testData )( '%s', ( name, slug, expected ) => {
      29 | 		mockedSlug = slug;
    > 30 | 		expect( isProjectPublic() ).toBe( expected );
         | 		                            ^
      31 | 	} );
      32 | } );
      33 |

      at packages/dev/test/utils/get-project-privacy.test.js:30:31

  ● isProjectPublic › Should return false for private repos

    expect(received).toBe(expected) // Object.is equality

    Expected: false
    Received: undefined

      28 | 	it.each( testData )( '%s', ( name, slug, expected ) => {
      29 | 		mockedSlug = slug;
    > 30 | 		expect( isProjectPublic() ).toBe( expected );
         | 		                            ^
      31 | 	} );
      32 | } );
      33 |

      at packages/dev/test/utils/get-project-privacy.test.js:30:31

  ● isProjectPrivate › Should return false for public repos

    expect(received).toBe(expected) // Object.is equality

    Expected: false
    Received: undefined

      40 | 	it.each( testData )( '%s', ( name, slug, expected ) => {
      41 | 		mockedSlug = slug;
    > 42 | 		expect( isProjectPrivate() ).toBe( expected );
         | 		                             ^
      43 | 	} );
      44 | } );
      45 |

      at packages/dev/test/utils/get-project-privacy.test.js:42:32

  ● isProjectPrivate › Should return true for private repos

    expect(received).toBe(expected) // Object.is equality

    Expected: true
    Received: undefined

      40 | 	it.each( testData )( '%s', ( name, slug, expected ) => {
      41 | 		mockedSlug = slug;
    > 42 | 		expect( isProjectPrivate() ).toBe( expected );
         | 		                             ^
      43 | 	} );
      44 | } );
      45 |

      at packages/dev/test/utils/get-project-privacy.test.js:42:32

Report generated by 🧪jest coverage report action from f074732

Please sign in to comment.