Skip to content

Commit

Permalink
Build: add some info
Browse files Browse the repository at this point in the history
  • Loading branch information
baruchiro committed Sep 6, 2024
1 parent 4efef84 commit f649303
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
clientSecret,
redirectUri,
scopes,
} from '@/backend/export/outputVendors/googleSheets/googleAuth';
} from './googleAuth';

export default () => {
if (!clientId || !clientSecret)
Expand Down
4 changes: 2 additions & 2 deletions packages/renderer/src/store/Store.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
import { getYnabAccountData } from '#preload';
import { makeAutoObservable, runInAction } from 'mobx';
import { makeAutoObservable, runInAction, toJS } from 'mobx';
import { createContext, useContext } from 'react';
import { type YnabAccountDataType, type YnabConfig } from '../types';

Expand All @@ -23,7 +23,7 @@ export default class Store {
runInAction(() => {
this.ynabAccountData = ynabAccountData;
this.fetchingYnabAccountData = false;
console.log('Ynab account data ', this.ynabAccountData);
console.log('Ynab account data ',toJS(this.ynabAccountData));
});
}

Expand Down
26 changes: 26 additions & 0 deletions tests/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Manual Testing

## Operations Systems

The following Operation Systems are supported:

- Windows
- Linux
- MacOS (Apple Silicon)
- MacOS (Intel)

## Testing Steps

For each Operation System, the following steps should be followed:

- Open Caspion
- Add two bank accounts (no need to test every bank account)
- Configure the exporters
- Excel
- Google Sheets
- JSON
- YNAB
- Change the configurations (open browser, timeout, days back)
- Close Caspion completely (on MacOS, make sure it's not running in the background)
- Open Caspion
- [ ] Check if all the previous configurations are still there

0 comments on commit f649303

Please sign in to comment.