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

commit tree 2d913a2de238a9e4939ba21630b1b6245e533cd0 #1

Open
wants to merge 1 commit into
base: fis-wip
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 102 additions & 0 deletions .results.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
{
"stats": {
"suites": 4,
"tests": 6,
"passes": 6,
"pending": 0,
"failures": 0,
"start": "2022-06-06T16:34:18.910Z",
"end": "2022-06-06T16:34:19.375Z",
"duration": 465
},
"tests": [
{
"title": "is set as Scuber",
"fullTitle": "index.js companyName is set as Scuber",
"duration": 1,
"currentRetry": 0,
"err": {}
},
{
"title": "is defined as a const",
"fullTitle": "index.js companyName is defined as a const",
"duration": 0,
"currentRetry": 0,
"err": {}
},
{
"title": "is declared as equal to Chelsea",
"fullTitle": "index.js mostProfitableNeighborhood is declared as equal to Chelsea",
"duration": 0,
"currentRetry": 0,
"err": {}
},
{
"title": "is defined using let",
"fullTitle": "index.js mostProfitableNeighborhood is defined using let",
"duration": 0,
"currentRetry": 0,
"err": {}
},
{
"title": "is declared as equal to Susan Smith",
"fullTitle": "index.js companyCeo is declared as equal to Susan Smith",
"duration": 0,
"currentRetry": 0,
"err": {}
},
{
"title": "is defined using let",
"fullTitle": "index.js companyCeo is defined using let",
"duration": 0,
"currentRetry": 0,
"err": {}
}
],
"pending": [],
"failures": [],
"passes": [
{
"title": "is set as Scuber",
"fullTitle": "index.js companyName is set as Scuber",
"duration": 1,
"currentRetry": 0,
"err": {}
},
{
"title": "is defined as a const",
"fullTitle": "index.js companyName is defined as a const",
"duration": 0,
"currentRetry": 0,
"err": {}
},
{
"title": "is declared as equal to Chelsea",
"fullTitle": "index.js mostProfitableNeighborhood is declared as equal to Chelsea",
"duration": 0,
"currentRetry": 0,
"err": {}
},
{
"title": "is defined using let",
"fullTitle": "index.js mostProfitableNeighborhood is defined using let",
"duration": 0,
"currentRetry": 0,
"err": {}
},
{
"title": "is declared as equal to Susan Smith",
"fullTitle": "index.js companyCeo is declared as equal to Susan Smith",
"duration": 0,
"currentRetry": 0,
"err": {}
},
{
"title": "is defined using let",
"fullTitle": "index.js companyCeo is defined using let",
"duration": 0,
"currentRetry": 0,
"err": {}
}
]
}
5 changes: 5 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
// Code your solution in this file!
const companyName = 'Scuber';
// const mostProfitableNeighborhood = 'Chelsea';
let mostProfitableNeighborhood = 'Chelsea';
// const companyCeo = 'Susan Smith';
let companyCeo = 'Susan Smith';