mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-19 21:58:29 +01:00
19 lines
405 B
TypeScript
19 lines
405 B
TypeScript
export default {
|
|
method: 'changeLanguage',
|
|
setup: {
|
|
mnemonic: 'mnemonic_12',
|
|
},
|
|
tests: [
|
|
{
|
|
skip: ['1', '<2.7.0'],
|
|
description: 'Change language to en-US',
|
|
params: {
|
|
language: 'en-US',
|
|
},
|
|
result: {
|
|
message: 'Language changed',
|
|
},
|
|
},
|
|
],
|
|
} satisfies TestCase;
|