Compare commits

...

3 Commits

Author SHA1 Message Date
williamlardier bdfaf2e7e9
wip 2023-07-13 16:44:50 +02:00
williamlardier 71de880218
wip 2023-07-13 16:36:41 +02:00
williamlardier 6283834cea
wip 2023-07-13 16:06:19 +02:00
3 changed files with 5 additions and 5 deletions

View File

@ -50,7 +50,7 @@ function dateConvert(d) {
return (new Date(d)).toISOString();
}
describe('GET object', () => {
describe.only('GET object', () => {
withV4(sigCfg => {
let bucketUtil;
let s3;
@ -1057,7 +1057,7 @@ describe('GET object', () => {
});
const isCEPH = process.env.CI_CEPH !== undefined;
const describeSkipIfCeph = isCEPH ? describe.skip : describe;
const describeSkipIfCeph = isCEPH ? describe.skip : describe.only;
describeSkipIfCeph('GET object with object lock', () => {
withV4(sigCfg => {

View File

@ -34,7 +34,7 @@ function dateConvert(d) {
return (new Date(d)).toISOString();
}
describe('HEAD object, conditions', () => {
describe.only('HEAD object, conditions', () => {
withV4(sigCfg => {
let bucketUtil;
let s3;
@ -536,7 +536,7 @@ describe('HEAD object, conditions', () => {
});
const isCEPH = process.env.CI_CEPH !== undefined;
const describeSkipIfCeph = isCEPH ? describe.skip : describe;
const describeSkipIfCeph = isCEPH ? describe.skip : describe.only;
describeSkipIfCeph('HEAD object with object lock', () => {
withV4(sigCfg => {

View File

@ -131,7 +131,7 @@ const results = [
},
];
describe('Testing Config.js function: ', () => {
describe('Testing Config.js function: ', () => {-
results.forEach(result => {
it(`should return ${result.boolExpected} if source location ` +
`constraint === ${result.sourceLocationConstraintName} ` +