We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 443db49 commit f8392cfCopy full SHA for f8392cf
1 file changed
tests/integration/core.test.ts
@@ -45,6 +45,7 @@ function getInternalTempBranch(name: string) {
45
describe("commitFilesFromBase64", () => {
46
let repositoryId: string;
47
let testTargetCommit: string;
48
+
49
/**
50
* For tests, important that this commit is not an ancestor of TEST_TARGET_COMMIT,
51
* to ensure that non-fast-forward pushes are tested
@@ -159,6 +160,7 @@ describe("commitFilesFromBase64", () => {
159
160
onTestFinished(() => deleteBranch(branch));
161
162
const buffers = {
163
+ "1KiB": Buffer.alloc(1024, "Hello, world!"),
164
"1MiB": Buffer.alloc(1024 * 1024, "Hello, world!"),
165
"10MiB": Buffer.alloc(1024 * 1024 * 10, "Hello, world!"),
166
};
0 commit comments