File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
main/java/io/dapr/testcontainers
test/java/io/dapr/testcontainers Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 3333 run : ./mvnw clean install -B -q -DskipITs=true
3434 - name : Codecov
3535 uses : codecov/codecov-action@v5.5.1
36+ with :
37+ token : ${{ secrets.CODECOV_TOKEN }}
3638 - name : Upload test report for sdk
3739 uses : actions/upload-artifact@v5
3840 with :
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public class WorkflowDashboardContainer extends GenericContainer<WorkflowDashboa
3131 private static final Yaml YAML_MAPPER = YamlMapperFactory .create ();
3232 private static final YamlConverter <Component > COMPONENT_CONVERTER = new ComponentYamlConverter (YAML_MAPPER );
3333 public static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName
34- .parse ("public.ecr.aws/diagrid-dev /diagrid-dashboard:latest " );
34+ .parse ("ghcr.io/diagridio /diagrid-dashboard:0.0.1 " );
3535 private int dashboardPort = 8080 ;
3636 private Component stateStoreComponent ;
3737
Original file line number Diff line number Diff line change 1717
1818import java .util .Collections ;
1919
20+ import static org .junit .jupiter .api .Assertions .assertEquals ;
2021import static org .junit .jupiter .api .Assertions .assertFalse ;
2122import static org .junit .jupiter .api .Assertions .assertNotNull ;
2223import static org .junit .jupiter .api .Assertions .assertTrue ;
@@ -33,6 +34,8 @@ public void dashboardTest() {
3334 dashboard .configure ();
3435 assertNotNull (dashboard .getEnvMap ().get ("COMPONENT_FILE" ));
3536 assertFalse (dashboard .getEnvMap ().get ("COMPONENT_FILE" ).isEmpty ());
37+ assertEquals (8080 , dashboard .getPort ());
38+
3639 }
3740 }
3841}
You can’t perform that action at this time.
0 commit comments