mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-05 10:12:55 +01:00
Fix lint issue
This commit is contained in:
parent
2bdaf00273
commit
114965806a
1 changed files with 4 additions and 1 deletions
|
@ -214,7 +214,10 @@ test("getInputAsArray handles empty lines correctly", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("getInputAsArray sorts files correctly", () => {
|
test("getInputAsArray sorts files correctly", () => {
|
||||||
testUtils.setInput("foo", "bar\n!baz\nwaldo\nqux\nquux\ncorge\ngrault\ngarply");
|
testUtils.setInput(
|
||||||
|
"foo",
|
||||||
|
"bar\n!baz\nwaldo\nqux\nquux\ncorge\ngrault\ngarply"
|
||||||
|
);
|
||||||
expect(actionUtils.getInputAsArray("foo")).toEqual([
|
expect(actionUtils.getInputAsArray("foo")).toEqual([
|
||||||
"!baz",
|
"!baz",
|
||||||
"bar",
|
"bar",
|
||||||
|
|
Loading…
Reference in a new issue