Faster incremental builds

This commit is contained in:
Fedor Indutny
2025-10-06 12:23:41 -07:00
committed by GitHub
parent 7ab12f3d7a
commit 780f39c285
130 changed files with 1479 additions and 1450 deletions

View File

@@ -4,7 +4,7 @@
import { assert } from 'chai';
import { findRetryAfterTimeFromError } from '../../../jobs/helpers/findRetryAfterTimeFromError.js';
import { HTTPError } from '../../../textsecure/Errors.js';
import { HTTPError } from '../../../types/HTTPError.js';
import { MINUTE } from '../../../util/durations/index.js';
describe('findRetryAfterTimeFromError', () => {

View File

@@ -4,10 +4,8 @@
import { assert } from 'chai';
import * as sinon from 'sinon';
import lodash from 'lodash';
import {
HTTPError,
SendMessageProtoError,
} from '../../../textsecure/Errors.js';
import { SendMessageProtoError } from '../../../textsecure/Errors.js';
import { HTTPError } from '../../../types/HTTPError.js';
import { SECOND } from '../../../util/durations/index.js';
import {

View File

@@ -3,7 +3,7 @@
import { assert } from 'chai';
import * as sinon from 'sinon';
import { HTTPError } from '../../../textsecure/Errors.js';
import { HTTPError } from '../../../types/HTTPError.js';
import * as durations from '../../../util/durations/index.js';
import { drop } from '../../../util/drop.js';