fix(ci): remove ci dependencies

This commit is contained in:
2018-08-14 01:47:54 +02:00
parent 4e51ed315e
commit e8133247f7
6 changed files with 39 additions and 46 deletions

View File

@ -23,17 +23,18 @@ tap.test('should post a JSON document over http', async () => {
});
tap.skip.test('should deal with unix socks', async () => {
const socketResponse = await smartrequest.request('http://unix:/var/run/docker.sock:/containers/json', {
headers: {
"Content-Type": "application/json",
"Host": "docker.sock"
const socketResponse = await smartrequest.request(
'http://unix:/var/run/docker.sock:/containers/json',
{
headers: {
'Content-Type': 'application/json',
Host: 'docker.sock'
}
}
});
);
console.log(socketResponse.body);
});
tap.skip.test('should correctly upload a file using formData', async () => {
})
tap.skip.test('should correctly upload a file using formData', async () => {});
tap.start();