Skip to content

Commit e283768

Browse files
committed
chore: move and rename clearBareClone test
1 parent 06be914 commit e283768

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/testClearBareClone.test.js renamed to test/processors/clearBareClone.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
const fs = require('fs');
22
const chai = require('chai');
3-
const clearBareClone = require('../src/proxy/processors/push-action/clearBareClone').exec;
4-
const pullRemote = require('../src/proxy/processors/push-action/pullRemote').exec;
5-
const { Action } = require('../src/proxy/actions/Action');
3+
const clearBareClone = require('../../src/proxy/processors/push-action/clearBareClone').exec;
4+
const pullRemote = require('../../src/proxy/processors/push-action/pullRemote').exec;
5+
const { Action } = require('../../src/proxy/actions/Action');
66
chai.should();
77

88
const expect = chai.expect;
99
const timestamp = Date.now();
1010

11-
describe('clear bare and local clones', async () => {
11+
describe.skip('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';

0 commit comments

Comments
 (0)