Skip to content

Latest commit

 

History

History
 
 

e2e

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

RedisInsight Testcafe e2e tests

Before run tests run next commands

start application:

yarn start:app

run docker with last redis version

docker run --name redis-last-version -p 7777:6379 -d redislabs/redismod

Run tests locally from the tests/e2e folder

  • to run tests in Chrome browser run
yarn test:chrome

Local test development

  • 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
    ...
})