@@ -45,10 +45,18 @@ const normalizeDeviceNameTests = [
|
45 | 45 | |
46 | 46 | { input: 'COM1:', expected: '.\\COM1:.' }, |
47 | 47 | { input: 'COM9:', expected: '.\\COM9:.' }, |
| 48 | +{ input: 'COM¹:', expected: '.\\COM¹:.' }, |
| 49 | +{ input: 'COM²:', expected: '.\\COM²:.' }, |
| 50 | +{ input: 'COM³:', expected: '.\\COM³:.' }, |
48 | 51 | { input: 'COM1:.\\..\\..\\foo', expected: '.\\COM1:..\\..\\foo' }, |
| 52 | +{ input: 'COM¹:.\\..\\..\\foo', expected: '.\\COM¹:..\\..\\foo' }, |
49 | 53 | { input: 'LPT1:', expected: '.\\LPT1:.' }, |
| 54 | +{ input: 'LPT¹:', expected: '.\\LPT¹:.' }, |
| 55 | +{ input: 'LPT²:', expected: '.\\LPT²:.' }, |
| 56 | +{ input: 'LPT³:', expected: '.\\LPT³:.' }, |
50 | 57 | { input: 'LPT9:', expected: '.\\LPT9:.' }, |
51 | 58 | { input: 'LPT1:.\\..\\..\\foo', expected: '.\\LPT1:..\\..\\foo' }, |
| 59 | +{ input: 'LPT¹:.\\..\\..\\foo', expected: '.\\LPT¹:..\\..\\foo' }, |
52 | 60 | { input: 'LpT5:/another/path', expected: '.\\LpT5:another\\path' }, |
53 | 61 | |
54 | 62 | { input: 'C:\\foo', expected: 'C:\\foo' }, |
|