yarn start:app
docker run --name redis-last-version -p 7777:6379 -d redislabs/redismod
- to run tests in Chrome browser run
yarn test:chrome
- There is no need to run whole test suite when you are developing only one (2, 3 :) ) test.
To mark which tests should be run use
test.only(...)
syntax.
test.only
...
})
- You can use
test.skip(...)
syntax to skip only one test.
test.skip
...
})