Skip to content

Commit

Permalink
fix(devops): fix firefox protocol.ts location (#3630)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed Aug 25, 2020
1 parent adc2a44 commit a2a9619
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions utils/protocol-types-generator/index.js
Expand Up @@ -15,7 +15,7 @@ async function generateProtocol(name, executablePath) {
}

async function generateChromiumProtocol(executablePath) {
const outputPath = path.join(__dirname, '..', '..', 'src', 'server', 'chromium', 'protocol.ts');
const outputPath = path.join(__dirname, '../../src/server/chromium/protocol.ts');
process.env.PLAYWRIGHT_CHROMIUM_DEBUG_PORT = '9339';
const playwright = require('../../index').chromium;
const browser = await playwright.launch({ executablePath });
Expand All @@ -29,8 +29,8 @@ async function generateChromiumProtocol(executablePath) {
}

async function generateWebKitProtocol(folderPath) {
const outputPath = path.join(__dirname, '..', '..', 'src', 'server', 'webkit', 'protocol.ts');
const json = JSON.parse(await fs.promises.readFile(path.join(folderPath, '..', 'protocol.json'), 'utf8'));
const outputPath = path.join(__dirname, '../../src/server/webkit/protocol.ts');
const json = JSON.parse(await fs.promises.readFile(path.join(folderPath, '../protocol.json'), 'utf8'));
await fs.promises.writeFile(outputPath, jsonToTS({domains: json}));
console.log(`Wrote protocol.ts for WebKit to ${path.relative(process.cwd(), outputPath)}`);
}
Expand Down Expand Up @@ -126,10 +126,10 @@ function typeOfProperty(property, domain) {
}

async function generateFirefoxProtocol(executablePath) {
const outputPath = path.join(__dirname, '..', '..', 'src', 'firefox', 'protocol.ts');
const outputPath = path.join(__dirname, '../../src/server/firefox/protocol.ts');
const omnija = os.platform() === 'darwin' ?
path.join(executablePath, '..', '..', 'Resources', 'omni.ja') :
path.join(executablePath, '..', 'omni.ja');
path.join(executablePath, '../../Resources/omni.ja') :
path.join(executablePath, '../omni.ja');
const zip = new StreamZip({file: omnija, storeEntries: true});
// @ts-ignore
await new Promise(x => zip.on('ready', x));
Expand Down

0 comments on commit a2a9619

Please sign in to comment.