-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve bug report template structure
Fixes #2516, which caused newlines in device link Link to config files Only link to devices page for ubuntu touch devices mention if a local config file was used
- Loading branch information
1 parent
8107d24
commit c3d3b47
Showing
6 changed files
with
158 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const ubuntuPastebin = { | ||
const openCutsReporter = { | ||
OpenCutsReporter: jest.fn().mockReturnValue({ | ||
smartRun: jest.fn() | ||
}) | ||
}; | ||
|
||
module.exports = ubuntuPastebin; | ||
module.exports = openCutsReporter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
function osInfo(cb) { | ||
cb({ | ||
distro: "distro", | ||
release: "release", | ||
codename: "codename", | ||
platform: "platform", | ||
kernel: "kernel", | ||
arch: "arch", | ||
build: "build", | ||
servicepack: "servicepack" | ||
}); | ||
} | ||
const osInfo = jest.fn().mockResolvedValue({ | ||
distro: "distro", | ||
release: "release", | ||
codename: "codename", | ||
platform: "platform", | ||
kernel: "kernel", | ||
arch: "arch", | ||
build: "build", | ||
servicepack: "servicepack" | ||
}); | ||
|
||
module.exports.osInfo = osInfo; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters