Skip to content

Commit

Permalink
test: remove @PendingFeature from tests that are now working (#270)
Browse files Browse the repository at this point in the history
Thanks to grails/grails-core#13908, 3 more tests can be re-enabled.
  • Loading branch information
matrei authored Dec 6, 2024
1 parent def7ad9 commit 3ea3e02
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ class InterceptorFunctionalSpec extends ContainerGebSpec {
$().text() == 'Name: JSB'
}

@PendingFeature(reason = 'text == Page Not Found')
void 'Test that after interceptor can render text'() {
when:
go '/demo/show?interceptorRendersText=true'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
package functionaltests


import grails.plugin.geb.ContainerGebSpec
import grails.testing.mixin.integration.Integration
import org.testcontainers.images.builder.Transferable
import spock.lang.PendingFeature

/**
*/
@Integration(applicationClass = Application)
class UploadControllerSpec extends ContainerGebSpec {

@PendingFeature(reason='https://github.com/grails/grails-core/issues/13849')
void "Test file upload"() {
when:"When go to an upload page"
go "/upload/index"
Expand All @@ -26,7 +23,6 @@ class UploadControllerSpec extends ContainerGebSpec {
$('p').text() == 'Test upload'
}

@PendingFeature(reason='https://github.com/grails/grails-core/issues/13849')
void "Test file upload parameters"() {
when:"When go to an upload page"
go "/upload/index"
Expand Down

0 comments on commit 3ea3e02

Please sign in to comment.