Skip to content

Commit

Permalink
Update to npm run generate command
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickname5862 committed Sep 26, 2024
1 parent 6216e85 commit cd8caee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"help": "nx help",
"tutorial": "jest tutorial/* -c tutorial/jest.config.ts",
"solution": "jest solution/* -c solution/jest.config.ts",
"generate": "tsc generator/generateTutorialAndSolution.ts && node generator/generateTutorialAndSolution.js && npm run tutorial && npm run solution"
"generate": "tsc generator/generateTutorialAndSolution.ts && node generator/generateTutorialAndSolution.js && npm run tutorial && npm run solution && rm generator/generateTutorialAndSolution.js"
},
"standard-version": {
"bumpFiles": [
Expand Down
2 changes: 1 addition & 1 deletion solution/8 - utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ describe('utils', () => {
});
});

describe('`Promise`, `Observable`, and `EventPattern`', () => {
describe('`Promise`, `Observable`, and `fromEventPattern`', () => {
/**
* Sherlock can also deal with Promises using the `.fromPromise()` and `.toPromise()` functions.
* This translates Promises directly to Sherlock concepts we have discussed already.
Expand Down
2 changes: 1 addition & 1 deletion tutorial/8 - utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ describe.skip('utils', () => {
});
});

describe.skip('`Promise`, `Observable`, and `EventPattern`', () => {
describe.skip('`Promise`, `Observable`, and `fromEventPattern`', () => {
/**
* Sherlock can also deal with Promises using the `.fromPromise()` and `.toPromise()` functions.
* This translates Promises directly to Sherlock concepts we have discussed already.
Expand Down

0 comments on commit cd8caee

Please sign in to comment.