Skip to content

Commit 19ae3e0

Browse files
committed
chore: fix linter
1 parent b05a1e3 commit 19ae3e0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/processors/clearBareClone.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ chai.should();
88
const expect = chai.expect;
99
const timestamp = Date.now();
1010

11-
describe.skip('clear bare and local clones', async () => {
11+
describe('clear bare and local clones', async () => {
1212
it('pull remote generates a local .remote folder', async () => {
1313
const action = new Action('123', 'type', 'get', timestamp, 'finos/git-proxy');
1414
action.url = 'https://github.com/finos/git-proxy';

test/processors/getDiff.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe('getDiff', () => {
3333
it('should get diff between commits', async () => {
3434
await fs.writeFile(path.join(tempDir, 'test.txt'), 'modified content');
3535
await git.add('.');
36-
const commit = await git.commit('second commit');
36+
await git.commit('second commit');
3737

3838
const action = new Action(
3939
'1234567890',
@@ -54,5 +54,6 @@ describe('getDiff', () => {
5454

5555
expect(result.steps[0].error).to.be.false;
5656
expect(result.steps[0].content).to.include('modified content');
57+
expect(result.steps[0].content).to.include('initial content');
5758
});
5859
});

0 commit comments

Comments
 (0)