We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a5ea7 commit e9e71a4Copy full SHA for e9e71a4
tests/repository.spec.ts
@@ -57,11 +57,12 @@ describe('Repository', () => {
57
expect(repo.state()).toBe('Clean');
58
});
59
60
- it('clone from remote with credential', { skip: !isCI }, async () => {
+ // If an action is executed by another contributor, it will not be authenticate properly.
61
+ // So turn off the test.
62
+ it('clone from remote with credential', { skip: true }, async () => {
63
const p = await makeTmpDir('clone');
64
const repo = await cloneRepository('https://github.com/seokju-na/dummy-repo-private', p, {
65
fetch: {
- followRedirects: 'All',
66
credential: {
67
type: 'Plain',
68
password: process.env.TEST_GITHUB_TOKEN!,
0 commit comments