feat: Start refactoring code base to be testable

Implement a spreadsheet service abstraction, GAS integration, and Jest testing setup.
This commit is contained in:
Ben Miller
2025-12-25 03:52:16 -07:00
parent 85cdfe1443
commit 3c6130778e
10 changed files with 5060 additions and 57 deletions

5
src/sheetUtils.test.ts Normal file
View File

@ -0,0 +1,5 @@
describe('sheetUtils', () => {
it('should be able to run tests', () => {
expect(true).toBe(true);
});
});