fix(tests): Update tests to use @git.zone/tstest, upgrade dependencies, remove GitLab CI and add local CI/workspace config

This commit is contained in:
2025-08-15 18:28:27 +00:00
parent 47cf2cc2cb
commit a04aabf78b
9 changed files with 3494 additions and 2521 deletions

View File

@@ -1,7 +1,7 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { tap, expect } from '@git.zone/tstest/tapbundle';
tap.test('test metadata functionality', async () => {
})
tap.start();
export default tap.start();

View File

@@ -1,4 +1,4 @@
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import { expect, tap } from '@git.zone/tstest/tapbundle';
import { jestExpect } from '@push.rocks/tapbundle/node';
import { Qenv } from '@push.rocks/qenv';

View File

@@ -1,4 +1,4 @@
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import { expect, tap } from '@git.zone/tstest/tapbundle';
import { Qenv } from '@push.rocks/qenv';
import * as smartbucket from '../ts/index.js';
@@ -126,4 +126,4 @@ tap.test('clean up directory style tests', async () => {
await myBucket.fastRemove({ path: 'file1.txt' });
});
tap.start();
export default tap.start();