Skip to content

Commit

Permalink
Remove doctor binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
monkbroc committed Feb 2, 2024
1 parent 069f7bf commit 6f69486
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 3 deletions.
Binary file removed assets/knownApps/core/doctor/core_doctor.bin
Binary file not shown.
Binary file removed assets/knownApps/electron/doctor/electron_doctor.bin
Binary file not shown.
Binary file removed assets/knownApps/p1/doctor/p1_doctor.bin
Binary file not shown.
Binary file removed assets/knownApps/photon/doctor/photon_doctor.bin
Binary file not shown.
5 changes: 2 additions & 3 deletions src/lib/known-apps.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@ describe('Known Apps', () => {
it('returns all the known apps', () => {
const apps = knownAppNames();

// XXX: Should we remove doctor from knownApps as well?
expect(apps.sort()).to.eql(['doctor', 'tinker', 'tinker-usb-debugging']);
expect(apps.sort()).to.eql(['tinker', 'tinker-usb-debugging']);
});
});

describe('knownAppsForPlatform', () => {
it('returns the known apps for Photon', () => {
const apps = knownAppsForPlatform('photon');

expect(Object.keys(apps)).to.eql(['doctor', 'tinker']);
expect(Object.keys(apps)).to.eql(['tinker']);
});
});
});

0 comments on commit 6f69486

Please sign in to comment.