Rename plugin_repository variable
This commit is contained in:
parent
fba795421d
commit
54d1379deb
|
@ -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 );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue