Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master > Develop #807

Merged
merged 45 commits into from
May 2, 2020
Merged

Master > Develop #807

merged 45 commits into from
May 2, 2020

Conversation

divyanshu-rawat
Copy link
Member

@divyanshu-rawat divyanshu-rawat commented Apr 22, 2020

  1. Utilize ignitus-Shared/index. Utilize ignitus-Shared/index. #806
  2. [dev]: Remove houndCI [dev]: Remove houndCI #811
  3. [ignitus-Shared]: Unit tests [ignitus-Shared]: Unit tests #812
  4. Readme change Readme change #810
  5. Added buttons with icons on left Added buttons with icons on left #809
  6. Secondary Dropdown Secondary Dropdown #808
  7. Unit tests Unit tests #813
  8. [ignitus-Shared/atoms]: unit tests [ignitus-Shared/atoms]: unit tests #814

@divyanshu-rawat divyanshu-rawat temporarily deployed to ignitus-pipe-develop-tdk5hc9iy April 22, 2020 16:37 Inactive
@codecov
Copy link

codecov bot commented Apr 22, 2020

Codecov Report

Merging #807 into master will increase coverage by 2.27273%.
The diff coverage is n/a.

Impacted file tree graph

@@                Coverage Diff                @@
##             master       #807         +/-   ##
=================================================
+ Coverage   0.56818%   2.84091%   +2.27273%     
=================================================
  Files             5          5                 
  Lines           176        176                 
  Branches         48         48                 
=================================================
+ Hits              1          5          +4     
+ Misses          175        171          -4     
Impacted Files Coverage Δ
...-ErrorHandlingComponents/errorHandling/validate.js 19.04762% <0.00000%> (+19.04762%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 007dcc6...007dcc6. Read the comment docs.

@@ -23,7 +23,7 @@ describe('Testimonial Selectors', () => {
author: 'John Smith',
source: 'https://example.com',
}];
const testimonialState = data
const testimonialState = data;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).

@@ -41,7 +41,7 @@ async function getHeaders(name) {
headers: {
'If-None-Match': item.etag,
},
validateStatus: status => (status >= 200 && status < 300) || status === 304,
validateStatus: (status) => (status >= 200 && status < 300) || status === 304,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').

@@ -21,7 +21,7 @@ export async function getTestimonialData() {
}
return await DBHelper.getDataFromDB(t.TESTIMONIALS_STORE);
} catch (err) {
return new Promise(reject => reject(err));
return new Promise((reject) => reject(err));
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').

}).catch((err) => {
console.log('failure', err);
});
} catch (error) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Expected an assignment or function call and instead saw an expression.
Expected an identifier and instead saw ')'.
Expected an identifier and instead saw 'catch'.
Expected an operator and instead saw '('.
Missing semicolon.

catch (error) {
}).then((response) => {
console.log('success', response);
}).catch((err) => {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').

})
}
catch (error) {
}).then((response) => {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').

@@ -47,20 +47,19 @@ function registerValidSW(swUrl) {
'BMRATagxJMbZdcX-a-lwaMC93vL7-Kmr3trsTc_g0HJy6C6UGCRMSKfxzJUOjAsXt3W5Ov7t_a8J9y9qROw9mFE',
),
});
try {
try {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Expected ')' and instead saw 'try'.
Missing semicolon.

@@ -17,7 +17,7 @@ const minLengthValidator = (value, minLength) => value.length >= minLength;
* @param value
* @return
*/
const requiredValidator = value => value.trim() !== '';
const requiredValidator = (value) => value.trim() !== '';
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).

@@ -23,7 +23,7 @@ describe('Testimonial Selectors', () => {
author: 'John Smith',
source: 'https://example.com',
}];
const testimonialState = data
const testimonialState = data;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).

@@ -41,7 +41,7 @@ async function getHeaders(name) {
headers: {
'If-None-Match': item.etag,
},
validateStatus: status => (status >= 200 && status < 300) || status === 304,
validateStatus: (status) => (status >= 200 && status < 300) || status === 304,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').

@@ -21,7 +21,7 @@ export async function getTestimonialData() {
}
return await DBHelper.getDataFromDB(t.TESTIMONIALS_STORE);
} catch (err) {
return new Promise(reject => reject(err));
return new Promise((reject) => reject(err));
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').

@Ignitus-bot Ignitus-bot merged commit ffde53a into master May 2, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants