Skip to content

Commit

Permalink
Fix Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
millerds committed Apr 16, 2024
1 parent f816319 commit c6bc2df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/convert-to-single-host.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe('Office-Addin-Taskpane-Ts projects', () => {
it('Manifest.xml is updated appropriately', async () => {
const manifestInfo : ManifestInfo = await OfficeAddinManifest.readManifestFile(manifestXmlFile);
assert.equal(manifestInfo.hosts[0], "Workbook");
assert.notEqual(manifestInfo.displayName, testProjectName); // TODO: update when new convert script is in yo-office template branches
assert.equal(manifestInfo.displayName, testProjectName);
});
});

Expand Down Expand Up @@ -362,7 +362,7 @@ describe('Office-Addin-Taskpane-Ts projects via cli', () => {
it('Manifest.xml is updated appropriately', async () => {
const manifestInfo : ManifestInfo = await OfficeAddinManifest.readManifestFile(manifestXmlFile);
assert.equal(manifestInfo.hosts[0], "Workbook");
assert.notEqual(manifestInfo.displayName, testProjectName); // TODO: update when new convert script is in yo-office template branches
assert.equal(manifestInfo.displayName, testProjectName);
});
});

Expand Down

0 comments on commit c6bc2df

Please sign in to comment.