Skip to content

Commit

Permalink
Sync and format
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Sep 22, 2023
1 parent 9f35761 commit c48bd27
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
8 changes: 5 additions & 3 deletions exercises/concept/train-driver/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules
yarn-error.log

/node_modules
/bin/configlet
/bin/configlet.exe
/pnpm-lock.yaml
/yarn.lock
14 changes: 7 additions & 7 deletions exercises/concept/train-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
"directory": "exercises/concept/train-driver"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/core": "^7.22.10",
"@exercism/babel-preset-javascript": "^0.2.1",
"@exercism/eslint-config-javascript": "^0.6.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"babel-jest": "^29.2.2",
"core-js": "~3.26.1",
"eslint": "^8.30.0",
"jest": "^29.3.1"
"@types/jest": "^29.5.4",
"@types/node": "^20.5.6",
"babel-jest": "^29.6.4",
"core-js": "~3.32.1",
"eslint": "^8.49.0",
"jest": "^29.6.3"
},
"dependencies": {},
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions exercises/concept/train-driver/train-driver.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ describe('extendRouteInformation', () => {
temperature: '5',
};
expect(extendRouteInformation(route, moreRouteInformation)).toEqual(
expected
expected,
);
});

Expand All @@ -99,7 +99,7 @@ describe('extendRouteInformation', () => {
temperature: '20',
};
expect(extendRouteInformation(route, moreRouteInformation)).toEqual(
expected
expected,
);
});

Expand All @@ -118,7 +118,7 @@ describe('extendRouteInformation', () => {
temperature: '-6',
};
expect(extendRouteInformation(route, moreRouteInformation)).toEqual(
expected
expected,
);
});
});
Expand Down

0 comments on commit c48bd27

Please sign in to comment.