@iota-big3/integration-tests
v2.0.0
Published
Integration tests for IOTA Big3 SDK packages
Downloads
6
Readme
Integration Tests
This package will contain integration tests for the IOTA Big3 SDK packages.
Current Status
The integration tests package has been cleaned up and is ready for future test development.
Previous tests were removed as they were written against outdated SDK interfaces during early development.
Structure
integration-tests/
├── src/ # Future test files
├── package.json # Package configuration
├── tsconfig.json # TypeScript configuration
└── README.md # This fileFuture Development
When ready to add integration tests:
- Create test files in the
src/directory - Use Jest or another testing framework
- Test against current SDK interfaces
- Focus on cross-package integration scenarios
- Ensure tests run in CI/CD pipeline
Configuration
- ESLint configuration (
.eslintrc.js) is set up with appropriate rules for test files - TypeScript configuration extends the root configuration
- Package is configured with Jest dependencies
Running Tests
# Install dependencies
npm install
# Run tests (when implemented)
npm test
# Build
npm run build