Initial commit: LinkSyncServer and LinkSyncExtension projects with complete documentation, models, API endpoints, tests, and extension implementation

This commit is contained in:
DavidSaylor
2026-05-11 17:37:10 -05:00
parent ad0b12b452
commit aed69afdfd
691 changed files with 181874 additions and 28 deletions

View File

@@ -0,0 +1,31 @@
/*
* DEPRECATED: LinkdingSync Test Runner (Legacy)
*
* This file has been replaced by the modular test structure:
*
* tests/
* ├── utils.js # Shared utilities
* ├── orchestrator.js # Main test runner
* ├── test-isolation.js # Isolation tests (scenarios 1-2)
* ├── test-conflicts.js # Conflict tests (scenarios 3-4)
* ├── test-deletion.js # Deletion tests (scenarios 5-6)
* └── test-bundles.js # Bundle tests (scenarios 7-8)
*
* To use the new tests:
* 1. Open Firefox DevTools console
* 2. Copy tests/orchestrator.js into console
* 3. Run runAllTestsWithReset()
*
* See docs/test-usage.md for full instructions.
*/
console.log('');
console.log('LinkdingSync test-runner.js is DEPRECATED');
console.log('');
console.log('Use the new modular test structure instead:');
console.log('');
console.log(' 1. Copy tests/orchestrator.js to Firefox DevTools console');
console.log(' 2. Run runAllTestsWithReset()');
console.log('');
console.log(' See docs/test-usage.md for instructions');
console.log('');