Refactoring code (#332)

Refactoring code

Co-authored-by: Liyas Thomas <liyasthomas@gmail.com>
This commit is contained in:
Liyas Thomas
2019-11-25 06:09:58 +05:30
committed by GitHub
5 changed files with 14 additions and 14 deletions

View File

@@ -28,7 +28,7 @@ try {
version.name = (await axios
.get("https://api.github.com/repos/liyasthomas/postwoman/releases")
// If we can't get it from GitHub, we'll resort to getting it from package.json
.catch(ex => ({
.catch((ex) => ({
data: [{
tag_name: require("./package.json").version
}]

View File

@@ -1231,7 +1231,7 @@ export default {
);
}
if (this.headers) {
this.headers.forEach(function(element) {
this.headers.forEach((element) => {
requestString.push(
"xhr.setRequestHeader('" +
element.key +
@@ -1288,7 +1288,7 @@ export default {
);
}
if (this.headers) {
this.headers.forEach(function(element) {
this.headers.forEach((element) => {
headers.push(
' "' + element.key + '": "' + element.value + '",\n'
);
@@ -1326,7 +1326,7 @@ export default {
);
}
if (this.headers) {
this.headers.forEach(function(element) {
this.headers.forEach((element) => {
requestString.push(
" -H '" + element.key + ": " + element.value + "' \\\n"
);
@@ -1966,7 +1966,7 @@ export default {
uploadPayload() {
this.rawInput = true;
let file = this.$refs.payload.files[0];
if (file != null) {
if (file !== null) {
let reader = new FileReader();
reader.onload = e => {
this.rawParams = e.target.result;

View File

@@ -295,7 +295,7 @@ export default {
}
},
disconnect() {
if (this.socket !== null) this.socket.close();
this.socket.close();
},
handleError(error) {
this.disconnect();

View File

@@ -244,7 +244,7 @@ export default {
},
setActiveColor(color, vibrant) {
// By default, the color is vibrant.
if (vibrant == null) vibrant = true;
if (vibrant === null) vibrant = true;
document.documentElement.style.setProperty("--ac-color", color);
document.documentElement.style.setProperty(
"--act-color",

View File

@@ -1,6 +1,6 @@
describe('Methods', () => {
const methods = [ 'POST', 'HEAD', 'POST', 'PUT', 'DELETE','OPTIONS', 'PATCH']
methods.forEach(method => {
methods.forEach((method) => {
it(`Change the default method GET to ${method} with url query`, () => {
cy.visit(`/?method=${method}`)
.get('#method').contains(method)
@@ -11,8 +11,8 @@ describe('Methods', () => {
describe('Url and path', () => {
it('Change default url with query and reset default path to empty string and make a request to cat api', () => {
cy.seedAndVisit('catapi', '/?url=https://api.thecatapi.com&path=')
.get('#url').then(el => expect(el.val() === 'https://api.thecatapi.com').to.equal(true))
.get("#path").then(el => expect(el.val() === '').to.equal(true))
.get('#url').then((el) => expect(el.val() === 'https://api.thecatapi.com').to.equal(true))
.get("#path").then((el) => expect(el.val() === '').to.equal(true))
.get('#response-details-wrapper').should($wrapper => {
expect($wrapper).to.contain('FAKE Cat API')
})
@@ -23,17 +23,17 @@ describe('Authentication', () => {
it(`Change default auth 'None' to 'Basic' and set httpUser and httpPassword with url query`, () => {
cy.visit(`?&auth=Basic&httpUser=foo&httpPassword=bar`, { retryOnStatusCodeFailure: true })
.get('#authentication').contains('Authentication').click()
.then(() => {
.then(() => {
cy.get('input[name="http_basic_user"]', { timeout: 500 })
.invoke('val')
.then(user => {
.then((user) => {
expect(user === 'foo').to.equal(true)
cy.log('Success! user === foo')
})
cy.get('input[name="http_basic_passwd"]')
.invoke('val')
.then(user => {
.then((user) => {
expect(user === 'bar').to.equal(true)
cy.log('Success! password === bar')
})
@@ -48,7 +48,7 @@ describe('Authentication', () => {
.then(() => {
cy.get('input[name="bearer_token"]', { timeout: 500 })
.invoke('val')
.then(tkn => {
.then((tkn) => {
expect(tkn === base64Tkn).to.equal(true)
cy.log(`Success! input[name="bearer_token"] === ${base64Tkn}`)
})