From 8fffe6d385cc1cbe31cd95de7598cf9c557d6044 Mon Sep 17 00:00:00 2001 From: Sebastiandg7 Date: Sat, 17 Oct 2020 17:01:32 -0500 Subject: [PATCH] fix(nx-plugin): cover dash named plugins in e2e tests replace the property name version with the plain version of the plugin name in the plugins e2e tests in order to coincide with the generated schematic name ISSUES CLOSED: #3933 ISSUES CLOSED: #3933 --- e2e/nx-plugin/src/nx-plugin.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/nx-plugin/src/nx-plugin.test.ts b/e2e/nx-plugin/src/nx-plugin.test.ts index 632fc3614af0c..19b12858ce3c9 100644 --- a/e2e/nx-plugin/src/nx-plugin.test.ts +++ b/e2e/nx-plugin/src/nx-plugin.test.ts @@ -63,7 +63,7 @@ forEachCli((currentCLIName) => { // we should change it to point to the right collection using relative path it(`should run the plugin's e2e tests`, async (done) => { ensureProject(); - const plugin = uniq('plugin'); + const plugin = uniq('plugin-name'); runCLI( `generate @nrwl/nx-plugin:plugin ${plugin} --linter=${linter} --importPath=@proj/${plugin}` );