Update styles to latest unicorn 🦄 and prettier 🦋

This commit is contained in:
Webber
2020-05-01 16:52:08 +02:00
committed by Webber Takken
parent afef854ea0
commit 98a1b078fc
12 changed files with 29 additions and 31 deletions

View File

@@ -54,14 +54,14 @@ describe('BuildParameters', () => {
test.each([Platform.types.StandaloneWindows, Platform.types.StandaloneWindows64])(
'appends exe for %s',
targetPlatform => {
(targetPlatform) => {
expect(
BuildParameters.create({ ...someParameters, targetPlatform }).buildFile,
).toStrictEqual(`${someParameters.buildName}.exe`);
},
);
test.each([Platform.types.Android])('appends apk for %s', targetPlatform => {
test.each([Platform.types.Android])('appends apk for %s', (targetPlatform) => {
expect(
BuildParameters.create({ ...someParameters, targetPlatform }).buildFile,
).toStrictEqual(`${someParameters.buildName}.apk`);