Skip to content

Commit

Permalink
temporary disable test case
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jul 13, 2024
1 parent fbca455 commit e309e65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/general/VFSvsDirect.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
---><cfscript>
component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" skip=true {

function run( testResults , testBox ) {
describe( title="Test suite to compare the VFS against the direct approch vs HTTP (if possible)", body=function() {

// FileExists vs S3Exists
it(title="check FileExists vs S3Exists with AWS",skip=Util::isAWSNotSupported(), body = function( currentSpec ) {
it(title="check FileExists vs S3Exists with AWS",skip=true, body = function( currentSpec ) {
testS3ExistsVsFileExists(Util::getAWSCredentials());
});
it(title="check FileExists vs S3Exists with Blackbaze",skip=Util::isBackBlazeNotSupported(), body = function( currentSpec ) {
Expand All @@ -31,7 +31,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
it(title="check FileExists vs S3Exists with Google",skip=Util::isGoogleNotSupported(), body = function( currentSpec ) {
testS3ExistsVsFileExists(Util::getGoogleCredentials());
});
it(title="check FileExists vs S3Exists with Wasabi",skip=Util::isWasabiNotSupported(), body = function( currentSpec ) {
it(title="check FileExists vs S3Exists with Wasabi",skip=true, body = function( currentSpec ) {
testS3ExistsVsFileExists(Util::getWasabiCredentials());
});

Expand Down

0 comments on commit e309e65

Please sign in to comment.