tide/tests/_tide_item_node.test.fish
Branch Vincent 4f1002c3df
add node item (#181)
* add node

* Use string trim instead

Co-authored-by: Ilan Cosman <ilancosman@gmail.com>
2021-08-11 14:45:12 -07:00

19 lines
250 B
Fish

# RUN: %fish %s
function _node
_tide_decolor (_tide_item_node)
end
set -l tmpdir (mktemp -d)
cd $tmpdir
mock node --version "echo v16.5.0"
set -lx tide_node_icon
_node # CHECK:
touch package.json
_node # CHECK: ⬢ 16.5.0
rm -r $tmpdir