Skip to content

Commit 93a4866

Browse files
committed
🚚 split up main src files from tests better
1 parent 59584d9 commit 93a4866

File tree

4 files changed

+30
-32
lines changed

4 files changed

+30
-32
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/Microsoft/azure-pipelines-task-lib/master/tasks.schema.json",
3+
"id": "7be6b2b1-e220-4d29-982b-acb22782b62a",
4+
"name": "remotely-pull-git",
5+
"friendlyName": "Remotely Changes Pull with Git",
6+
"description": "Task used to connect to remote server and pull repository changes using Git.",
7+
"helpMarkDown": "",
8+
"category": "Utility",
9+
"author": "V-Network Solutions",
10+
"version": {
11+
"Major": 0,
12+
"Minor": 2,
13+
"Patch": 0
14+
},
15+
"instanceNameFormat": "Echo $(samplestring)",
16+
"inputs": [{
17+
"name": "samplestring",
18+
"type": "string",
19+
"label": "Sample String",
20+
"defaultValue": "",
21+
"required": true,
22+
"helpMarkDown": "A sample string"
23+
}],
24+
"execution": {
25+
"Node10": {
26+
"target": "../index.js"
27+
}
28+
}
29+
}

src/toolkit-for-git/remotely-pull-git/remotelyPullGit.spec.ts renamed to src/tests/tasks/remotely-pull-git/remotelyPullGit.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import chai from "chai";
22
import chaiAsPromised from "chai-as-promised";
3-
import { RemotelyPullGit } from "./remotelyPullGit";
3+
import { RemotelyPullGit } from "../../../main/tasks/remotely-pull-git/RemotelyPullGit";
44

55
chai.use(chaiAsPromised);
66
const expect = chai.expect;

src/toolkit-for-git/remotely-pull-git/task.json

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)