mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-02-08 03:09:24 +08:00
Update styles to latest unicorn 🦄 and prettier 🦋
This commit is contained in:
@@ -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`);
|
||||
|
||||
Reference in New Issue
Block a user