make-only-subtitle-default
HaveAGitGat 4 years ago
parent b1815667d6
commit af8c30429c

@ -12,6 +12,12 @@ jobs:
strategy:
matrix:
node-version: [16.x]
os:
[
["ubuntu-20.04"],
["windows-2019"],
["macos-11.0"],
]
steps:
- uses: actions/checkout@v2

@ -24,7 +24,7 @@ const tests = [
+ '6 channels - und aac \n'
+ '8 channels - ',
},
linux: undefined,
linux: false,
},
},
{
@ -86,7 +86,7 @@ const tests = [
+ '6 channels - \n'
+ '8 channels - ',
},
linux: undefined,
linux: false,
},
},
{

@ -20,7 +20,7 @@ const run = async (tests) => {
expectedOutput = test.output;
}
if (expectedOutput === undefined) {
if (expectedOutput === false) {
// skip test due to OS
// eslint-disable-next-line no-console
console.log(`Test not meant to run on ${os.platform()}, skipping`);

Loading…
Cancel
Save