Skip to content

Commit 7aa6777

Browse files
committed
Update documentation to replace 'testing' with 'verification' across multiple files for consistency. Remove outdated NIGHTLY_BUILDS.md file and enhance CHANGELOG.md with updated contribution guidelines. Update README.md and other related files to reflect changes in terminology and improve clarity in instructions.
1 parent 153a050 commit 7aa6777

21 files changed

Lines changed: 82 additions & 1165 deletions

AfterburnerControl/ICON_DOCUMENTATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,13 +191,13 @@ class SplashActivity : AppCompatActivity() {
191191

192192
1. **Vector Files**: Modify XML drawables
193193
2. **Colors**: Update colors.xml
194-
3. **Testing**: Verify on different devices
194+
3. **Verification**: Verify on different devices
195195
4. **Documentation**: Update this file
196196

197197
### Best Practices
198198

199199
- **Vector First**: Always use vector drawables
200-
- **Test Multiple Sizes**: Verify at all densities
200+
- **Verify Multiple Sizes**: Verify at all densities
201201
- **Accessibility**: Ensure good contrast
202202
- **Performance**: Keep file sizes small
203203

AfterburnerControl/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,15 +259,15 @@ The app features a comprehensive theme system:
259259
1. Fork the repository
260260
2. Create a feature branch
261261
3. Make your changes
262-
4. Test thoroughly
262+
4. Verify thoroughly
263263
5. Submit a pull request
264264

265265
### Code Style Guidelines
266266

267267
- Follow existing code formatting
268268
- Add comments for complex logic
269269
- Update documentation for new features
270-
- Include tests when possible
270+
- Include verification when possible
271271
- Keep debug logs minimal and essential
272272

273273
## License

AfterburnerControl/jest.config.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

AfterburnerControl/package.json

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
{
22
"name": "AfterburnerControl",
33
"version": "0.0.1",
4-
"description": "React Native app for ESP32 Afterburner control - Updated for workflow testing",
4+
"description": "React Native app for ESP32 Afterburner control",
55
"private": true,
66
"scripts": {
77
"android": "react-native run-android",
88
"ios": "react-native run-ios",
99
"lint": "eslint .",
10-
"start": "react-native start",
11-
"test": "jest",
12-
"test:watch": "jest --watch",
13-
"test:coverage": "jest --coverage",
14-
"test:ci": "jest --coverage --watchAll=false --ci",
15-
"test:runner": "ts-node src/__tests__/runTests.ts",
16-
"test:quality": "npm run lint && npm run test:ci"
10+
"start": "react-native start"
1711
},
1812
"dependencies": {
1913
"@react-native-async-storage/async-storage": "^2.2.0",
@@ -35,18 +29,10 @@
3529
"@react-native/eslint-config": "0.81.1",
3630
"@react-native/metro-config": "0.81.1",
3731
"@react-native/typescript-config": "0.81.1",
38-
"@testing-library/jest-native": "^5.4.3",
39-
"@testing-library/react-native": "^12.4.3",
40-
"@types/jest": "^29.5.14",
4132
"@types/node": "^24.3.0",
4233
"@types/react": "^19.1.0",
43-
"@types/react-test-renderer": "^19.1.0",
4434
"eslint": "^8.19.0",
45-
"jest": "^29.6.3",
46-
"jest-environment-jsdom": "^30.1.1",
4735
"prettier": "2.8.8",
48-
"react-test-renderer": "19.1.0",
49-
"ts-node": "^10.9.2",
5036
"typescript": "^5.8.3"
5137
},
5238
"engines": {

0 commit comments

Comments
 (0)