Skip to content

Commit

Permalink
chore(CaC): fix formating
Browse files Browse the repository at this point in the history
  • Loading branch information
flamestro committed May 24, 2024
1 parent 2dd1e2e commit d7478f4
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ describe('all', () => {
props: { networks: Network[]; volume?: Volume; dependsOn: Service[] }
) {
const volumes = props.volume
? [{ containerLocation: '/etc/nginx/certs', hostLocation: props.volume }]
? [
{
containerLocation: '/etc/nginx/certs',
hostLocation: props.volume,
},
]
: [];
super(scope, id, {
image: 'redis',
Expand Down

0 comments on commit d7478f4

Please sign in to comment.