Do not persistent query

close #84
This commit is contained in:
CzBiX
2022-10-07 16:11:13 +08:00
parent 21dc76beec
commit 9c2d613084
7 changed files with 17 additions and 15 deletions

View File

@@ -44,7 +44,7 @@ describe('format duration', () => {
describe('format timestamp', () => {
test.each([
// [948602096, '2000-01-23 12:34:56'], # comment for timezone issue
// [948602096, '2000-01-23 12:34:56'], # commented out due to timezone issue
[null, ''],
[-1, ''],
])('case %#', (value, result) => {

View File

@@ -14,6 +14,7 @@ const emtpyState: RootState = {
preferences: null,
pasteUrl: null,
needAuth: false,
query: null,
};
const mockState = mock(emtpyState);