diff --git a/packages/tests/src/e2e/samples/ProvisionSpfxProductivity.tests.ts b/packages/tests/src/e2e/samples/ProvisionSpfxProductivity.tests.ts deleted file mode 100644 index 04b9aa647a4..00000000000 --- a/packages/tests/src/e2e/samples/ProvisionSpfxProductivity.tests.ts +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -/** - * @author Huihui Wu - */ - -import { TemplateProjectFolder } from "../../utils/constants"; -import { CaseFactory } from "./sampleCaseFactory"; -import * as fs from "fs-extra"; -import * as path from "path"; -import { expect } from "chai"; - -class SpfxProductivityTestCase extends CaseFactory { - override async onAfterCreate(projectPath: string): Promise { - expect(fs.pathExistsSync(path.resolve(projectPath, "src", "src"))).to.be - .true; - } -} - -new SpfxProductivityTestCase( - TemplateProjectFolder.SpfxProductivity, - 24753056, - "huihuiwu@microsoft.com", - ["spfx"] -).test();