Skip to content

Commit 23ff984

Browse files
committed
removed unused module
1 parent 7311db7 commit 23ff984

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

bin/helpers/downloadBuildStacktrace.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
'use strict'
2-
const fs = require('fs'),
3-
request = require('request');
2+
const request = require('request');
43

54
const downloadBuildStacktrace = async (url) => {
6-
let writer = fs.createWriteStream('a.txt');
75
return new Promise(async (resolve, reject) => {
86
request.get(url).on('data', (data) => {
97
console.log(data.toString());

bin/helpers/sync/syncSpecsLogs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ let whileProcess = (whilstCallback) => {
151151
endTime = Date.now();
152152
showSpecsStatus(body);
153153
return specSummary.exitCode == config.buildFailedExitCode ?
154-
whilstCallback({ status: 204, message: "No specs raun in the build"} ) : whilstCallback(null, body);
154+
whilstCallback({ status: 204, message: "No specs ran in the build"} ) : whilstCallback(null, body);
155155
default:
156156
whileLoop = false;
157157
return whilstCallback({ status: response.statusCode, message: body });

0 commit comments

Comments
 (0)