()
| 918 | } |
| 919 | |
| 920 | function seqRandomFastShell() { |
| 921 | const shellType = randomFastShell(); |
| 922 | const size = getRandomShellSize(); |
| 923 | const shell = new Shell(shellType(size.size)); |
| 924 | shell.launch(size.x, size.height); |
| 925 | |
| 926 | let extraDelay = shell.starLife; |
| 927 | |
| 928 | return 900 + Math.random() * 600 + extraDelay; |
| 929 | } |
| 930 | |
| 931 | function seqTwoRandom() { |
| 932 | const size1 = getRandomShellSize(); |
no test coverage detected