> ## Documentation Index
> Fetch the complete documentation index at: https://support.locker.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Development

> Hướng dẫn cài đặt môi trường phát triển và chạy tests cho Locker Secrets NodeJS SDK

## Development

Cài đặt các gói cần thiết:

```bash theme={null}
npm install
```

### Chạy tests

Tạo file `.env` với các access keys cần thiết (tham khảo `.env.example`).

Để chạy tất cả tests, sử dụng:

```bash theme={null}
npm test
```

Để chạy một số test nhất định, hãy cập nhật `mocharc.js`:

```javascript theme={null}
ignore: [
  // './tests/index.spec.ts', // Comment the file you want to test
  './tests/sync.spec.ts',
  './tests/invalid.spec.ts',
  './tests/readonly.spec.ts'
]
```
