AngularでLoopBack 4でCRUD処理

環境
  1. [root@localhost ~]# npm -v
  2. 6.9.0
  3. [root@localhost ~]# node -v
  4. v10.16.3
下記エラーがでる。
  1. > mypj@1.0.0 start /root/mypj
  2. > npm run build && node -r source-map-support/register .
  3. > mypj@1.0.0 build /root/mypj
  4. > tsc
  5. src/__tests__/acceptance/home-page.acceptance.ts:5:1 - error TS2582: Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i @types/jest` or `npm i @types/mocha`.
  6. 5 describe('HomePage', () => {
  7. ~~~~~~~~
  8. src/__tests__/acceptance/home-page.acceptance.ts:9:3 - error TS2304: Cannot find name 'before'.
  9. 9 before('setupApplication', async () => {
  10. ~~~~~~
  11. src/__tests__/acceptance/home-page.acceptance.ts:13:3 - error TS2304: Cannot find name 'after'.
  12. 13 after(async () => {
  13. ~~~~~
  14. src/__tests__/acceptance/home-page.acceptance.ts:17:3 - error TS2582: Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i @types/jest` or `npm i @types/mocha`.
  15. 17 it('exposes a default home page', async () => {
  16. ~~
  17. src/__tests__/acceptance/home-page.acceptance.ts:24:3 - error TS2582: Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i @types/jest` or `npm i @types/mocha`.
  18. 24 it('exposes self-hosted explorer', async () => {
  19. ~~
  20. src/__tests__/acceptance/ping.controller.acceptance.ts:5:1 - error TS2582: Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i @types/jest` or `npm i @types/mocha`.
  21. 5 describe('PingController', () => {
  22. ~~~~~~~~
  23. src/__tests__/acceptance/ping.controller.acceptance.ts:9:3 - error TS2304: Cannot find name 'before'.
  24. 9 before('setupApplication', async () => {
  25. ~~~~~~
  26. src/__tests__/acceptance/ping.controller.acceptance.ts:13:3 - error TS2304: Cannot find name 'after'.
  27. 13 after(async () => {
  28. ~~~~~
  29. src/__tests__/acceptance/ping.controller.acceptance.ts:17:3 - error TS2582: Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i @types/jest` or `npm i @types/mocha`.
  30. 17 it('invokes GET /ping', async () => {
  31. ~~
  32. Found 9 errors.
  33. npm ERR! code ELIFECYCLE
  34. npm ERR! errno 2
  35. npm ERR! mypj@1.0.0 build: `tsc`
  36. npm ERR! Exit status 2
  37. npm ERR!
  38. npm ERR! Failed at the mypj@1.0.0 build script.
  39. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
  40. npm ERR! A complete log of this run can be found in:
  41. npm ERR! /root/.npm/_logs/2019-09-21T08_53_22_311Z-debug.log
  42. npm ERR! code ELIFECYCLE
  43. npm ERR! errno 2
  44. npm ERR! mypj@1.0.0 start: `npm run build && node -r source-map-support/register .`
  45. npm ERR! Exit status 2
  46. npm ERR!
  47. npm ERR! Failed at the mypj@1.0.0 start script.
  48. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
  49. npm ERR! A complete log of this run can be found in:
  50. npm ERR! /root/.npm/_logs/2019-09-21T08_53_22_334Z-debug.log
グローバルじゃなくてローカルに下記2つインストールで解決する。
  1. npm i @types/mocha
  2. npm i @types/jest

0 コメント:

コメントを投稿

Powered by Blogger.