From 992058856e406c59335548f361e55f509c8e2995 Mon Sep 17 00:00:00 2001 From: Maxim Apetsko <106022937+apetsko@users.noreply.github.com> Date: Fri, 7 Feb 2025 16:15:38 +0500 Subject: [PATCH] Update tutorial-nodejs.md fix test command --- user/tutorials/tutorial-nodejs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user/tutorials/tutorial-nodejs.md b/user/tutorials/tutorial-nodejs.md index b4ccb747938..d00cd5b4a6d 100644 --- a/user/tutorials/tutorial-nodejs.md +++ b/user/tutorials/tutorial-nodejs.md @@ -37,8 +37,8 @@ Travis CI runs the default `npm install` command to install your dependencies. Travis CI runs any test defined in your `package.json` file by default. Explicitly run the command as follows: ```yaml -install: - - npm install +script: + - npm test ``` {: data-file=".travis.yml"}