Rename plugin_repository variable

This commit is contained in:
Greg 2021-12-13 16:11:22 -07:00
parent fba795421d
commit 54d1379deb
1 changed files with 2 additions and 2 deletions

View File

@ -13,14 +13,14 @@ const {
beforeAll, beforeAll,
} = require( '@jest/globals' ); } = require( '@jest/globals' );
const { PLUGIN_REPOSITORY, PLUGIN_NAME, GITHUB_TOKEN } = process.env; const { GITHUB_REPOSITORY, PLUGIN_NAME, GITHUB_TOKEN } = process.env;
let zipUrl; let zipUrl;
let pluginPath; let pluginPath;
describe( 'Upload and activate plugin', () => { describe( 'Upload and activate plugin', () => {
beforeAll( async () => { beforeAll( async () => {
zipUrl = await getLatestReleaseZipUrl( PLUGIN_REPOSITORY, GITHUB_TOKEN ); zipUrl = await getLatestReleaseZipUrl( GITHUB_REPOSITORY, GITHUB_TOKEN );
pluginPath = await getRemotePluginZip( zipUrl, GITHUB_TOKEN ); pluginPath = await getRemotePluginZip( zipUrl, GITHUB_TOKEN );