From 97c10cbc6896f275896270dbd96917b515e1009b Mon Sep 17 00:00:00 2001 From: ashmrtn <3891298+ashmrtn@users.noreply.github.com> Date: Mon, 10 Jul 2023 14:29:27 -0700 Subject: [PATCH] Skip failing SharePoint pages tests (#3781) The SharePoint pages code is neither available from the CLI nor maintained right now. When the code is maintained again the tests can be unskipped. --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [x] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * #3780 #### Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- src/internal/m365/sharepoint/api/pages_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/internal/m365/sharepoint/api/pages_test.go b/src/internal/m365/sharepoint/api/pages_test.go index 2289f8d16..f3052c7a4 100644 --- a/src/internal/m365/sharepoint/api/pages_test.go +++ b/src/internal/m365/sharepoint/api/pages_test.go @@ -79,6 +79,7 @@ func (suite *SharePointPageSuite) TestFetchPages() { func (suite *SharePointPageSuite) TestGetSitePages() { t := suite.T() + t.Skip("skipping until code is maintained again") ctx, flush := tester.NewContext(t) defer flush() @@ -95,6 +96,7 @@ func (suite *SharePointPageSuite) TestGetSitePages() { func (suite *SharePointPageSuite) TestRestoreSinglePage() { t := suite.T() + t.Skip("skipping until code is maintained again") ctx, flush := tester.NewContext(t) defer flush()