Skip to main content

Development

Install the required packages:
npm install

Running tests

Create a .env file with the required access keys (refer to .env.example). To run all tests, use:
npm test
To run specific tests, update mocharc.js:
ignore: [
  // './tests/index.spec.ts', // Comment the file you want to test
  './tests/sync.spec.ts',
  './tests/invalid.spec.ts',
  './tests/readonly.spec.ts'
]