Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
fix: prettierrc
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Mar 4, 2022
1 parent 446a04a commit dc6c68d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .prettierrc.yml
@@ -1,3 +1,3 @@
trailingComma: 'all'
trailingComma: 'es5'
singleQuote: true
printWidth: 120
10 changes: 5 additions & 5 deletions test/customers.test.js
Expand Up @@ -13,7 +13,7 @@ describe('Customers', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const data = {
Expand All @@ -38,7 +38,7 @@ describe('Customers', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.customers.retrieve(1);
Expand All @@ -53,7 +53,7 @@ describe('Customers', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.customers.all();
Expand All @@ -68,7 +68,7 @@ describe('Customers', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const data = {
Expand All @@ -93,7 +93,7 @@ describe('Customers', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.customers.delete(1);
Expand Down
10 changes: 5 additions & 5 deletions test/inventory.test.js
Expand Up @@ -13,7 +13,7 @@ describe('Inventory', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const data = {
Expand All @@ -39,7 +39,7 @@ describe('Inventory', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.inventory.retrieve(1);
Expand All @@ -54,7 +54,7 @@ describe('Inventory', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.inventory.all();
Expand All @@ -69,7 +69,7 @@ describe('Inventory', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const data = {
Expand All @@ -95,7 +95,7 @@ describe('Inventory', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.inventory.delete(1);
Expand Down
10 changes: 5 additions & 5 deletions test/locations.test.js
Expand Up @@ -13,7 +13,7 @@ describe('Locations', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const data = {
Expand All @@ -36,7 +36,7 @@ describe('Locations', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.locations.retrieve(1);
Expand All @@ -51,7 +51,7 @@ describe('Locations', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.locations.all();
Expand All @@ -66,7 +66,7 @@ describe('Locations', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const data = {
Expand All @@ -89,7 +89,7 @@ describe('Locations', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.locations.delete(1);
Expand Down
10 changes: 5 additions & 5 deletions test/tickets.test.js
Expand Up @@ -13,7 +13,7 @@ describe('Tickets', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const data = {
Expand Down Expand Up @@ -41,7 +41,7 @@ describe('Tickets', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.tickets.retrieve(1);
Expand All @@ -56,7 +56,7 @@ describe('Tickets', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.tickets.all();
Expand All @@ -71,7 +71,7 @@ describe('Tickets', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const data = {
Expand Down Expand Up @@ -99,7 +99,7 @@ describe('Tickets', function () {
const client = new tuneuptechnology.client(
process.env.API_EMAIL,
process.env.API_KEY,
'http://tuneapp.localhost/api',
'http://tuneapp.localhost/api'
);

const response = await client.tickets.delete(1);
Expand Down

0 comments on commit dc6c68d

Please sign in to comment.