Skip to content
#

tape

Here are 190 public repositories matching this topic...

guidobouman
guidobouman commented Aug 21, 2019

The and method is not supported by Jest, where Chai does support it.

It should probably cut the assertion in two:

- expect(ticketNumber).to.be.above(0).and.to.be.below(46)
+ expect(ticketNumber).toBeGreaterThan(0)
+ expect(ticketNumber).toBeLessThan(46)

Is this a feasible option for codemods?

If so: I'm willing to work on a PR.

ljnash
ljnash commented Jun 21, 2021

I've been trying to write extended attributes (EA) to files stored on an LTO-5 tape but have been prevented from writing EAs that begin with user.ltfs.*. This seems like it may be a bug so I wanted to highlight the issue and seek advice/feedback.

IBM's documentation (https://www.ibm.com/docs/en/spectrum-archive-sde/2.4.1.0?topic=tips-extended-attributes) on this subject is slightly confusing

Improve this page

Add a description, image, and links to the tape topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tape topic, visit your repo's landing page and select "manage topics."

Learn more