mirror of
https://github.com/codecov/codecov-action.git
synced 2026-05-05 11:04:47 +00:00
Update test files
This commit is contained in:
parent
e16afe2276
commit
7a024964de
6 changed files with 9 additions and 41 deletions
10
demo/calculator/calculator.ts
Normal file
10
demo/calculator/calculator.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export default class Calculator {
|
||||
|
||||
add(x : number, y : number) : number {
|
||||
return x + y;
|
||||
}
|
||||
|
||||
subtract(x: number, y: number) : number {
|
||||
return x - y;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue