Skip to content

Commit f034f44

Browse files
authored
add more reasonable delay in test
1 parent d0d6530 commit f034f44

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/test/container-features/containerFeaturesOCI.test.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export const output = makeLog(createPlainLog(text => process.stdout.write(text),
77
describe('getCollectionRef()', async function () {
88
this.timeout('240s');
99

10-
1110
it('valid getCollectionRef()', async () => {
1211
const collectionRef = getCollectionRef(output, 'ghcr.io', 'devcontainers/templates');
1312
if (!collectionRef) {
@@ -166,8 +165,10 @@ describe('getRef()', async function () {
166165

167166
});
168167

169-
describe('Test OCI Pull', () => {
170-
it('Parse OCI identifier', async () => {
168+
describe('Test OCI Pull', async function () {
169+
this.timeout('10s');
170+
171+
it('Parse OCI identifier', async function () {
171172
const feat = getRef(output, 'ghcr.io/codspace/features/ruby:1');
172173
if (!feat) {
173174
assert.fail('featureRef should not be undefined');

0 commit comments

Comments
 (0)